← All plugins
mathews-profile
v1.0.0Install Mathew Craig's hosted portfolio MCP server and a skill that teaches Claude how to use it well — profile lookup, fit scoring, career timeline, project gallery, and knowledge-graph exploration, several with interactive MCP App widgets.
Claude Code1 skill1 MCP serverstreamable-http
by Mathew Craig0updated 7 hours ago
Source
git clone https://github.com/Mathewcraig1/agentic-toolkitClone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/mathews-profile/ inside the repository.
Layout
plugins/mathews-profile/
├── .claude-plugin/plugin.json├── skills/mathews-profile/SKILL.md└── .mcp.json
Skills1
mathews-profileskills/mathews-profile/SKILL.md
Use when the user asks about Mathew Craig — his background, work experience, skills, certifications, projects, career fit for a role, or wants to explore his knowledge graph. Also use when the user wants to delegate a sub-task to Mathew's own portfolio agent, or ask it a free-form question.
MCP servers1
mathews-profilestreamable-http
- url
- https://mathewcraig.vercel.app/api/mcp
Manifests1
plugins/mathews-profile/.claude-plugin/plugin.json
{
"name": "mathews-profile",
"description": "Install Mathew Craig's hosted portfolio MCP server and a skill that teaches Claude how to use it well — profile lookup, fit scoring, career timeline, project gallery, and knowledge-graph exploration, several with interactive MCP App widgets.",
"version": "1.0.0",
"author": {
"name": "Mathew Craig",
"email": "mathew.craig@outlook.com",
"url": "https://mathewcraig.vercel.app"
},
"homepage": "https://mathewcraig.vercel.app",
"repository": "https://github.com/Mathewcraig1/agentic-toolkit",
"keywords": [
"portfolio",
"mcp",
"mcp-apps",
"profile",
"career",
"knowledge-graph"
],
"mcpServers": {
"mathews-profile": {
"type": "http",
"url": "https://mathewcraig.vercel.app/api/mcp",
"tools": [
"*"
]
}
}
}