Interactive MCP server installer. Lists all available MCPs by category and installs the user's choice into .mcp.json
Installs MCP servers interactively by browsing categories and configuring .mcp.json
/plugin marketplace add theflysurfer/claude-skills-marketplace/plugin install theflysurfer-claude-skills-marketplace@theflysurfer/claude-skills-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Interactive installer for MCP (Model Context Protocol) servers. Browse by category, select, and install.
When user asks to install an MCP or wants to see available options:
.mcp.json| MCP | Package | Description |
|---|---|---|
| excel | @anthropic/mcp-excel | Excel spreadsheet manipulation |
| excel-win32com | mcp-server-excel (uvx) | Excel via Win32COM (Windows) |
| word | @anthropic/mcp-word | Word document manipulation |
| word-uvx | mcp-server-word (uvx) | Word via python-docx |
| powerpoint | @anthropic/mcp-powerpoint | PowerPoint manipulation |
| powerpoint-uvx | mcp-server-pptx (uvx) | PowerPoint via python-pptx |
| pdf-reader | @anthropic/mcp-pdf-reader | PDF text extraction |
| MCP | Package | Description |
|---|---|---|
| playwright | @playwright/mcp@latest | Browser automation |
| chrome-devtools | @anthropic/mcp-chrome-devtools | Chrome DevTools Protocol |
| brave | @anthropic/mcp-brave | Brave Search API |
| MCP | Package | Description |
|---|---|---|
| notion | @suekou/mcp-notion-server | Notion workspace integration |
| notion-pro | notion-mcp (uvx) | Advanced Notion features |
| notion-internal | Custom | Internal Notion API |
| github-http | @anthropic/mcp-github | GitHub API via HTTP |
| github-docker | mcp/github (Docker) | GitHub API via Docker |
| gmail | @anthropic/mcp-gmail | Gmail integration |
| outlook | @anthropic/mcp-outlook | Outlook integration |
| MCP | Package | Description |
|---|---|---|
| codex-cli | @anthropic/mcp-codex | OpenAI Codex integration |
| context7 | @anthropic/mcp-context7 | Context management |
| taskmaster | @anthropic/mcp-taskmaster | Task orchestration |
| serena | serena-mcp (uvx) | Serena AI assistant |
| MCP | Package | Description |
|---|---|---|
| basic-memory | @anthropic/mcp-memory | Persistent memory storage |
| desktop-commander | @anthropic/mcp-desktop | Desktop automation |
| jina | @anthropic/mcp-jina | Jina AI embeddings |
| puremd | @anthropic/mcp-puremd | Markdown processing |
| veyrax | veyrax-mcp (uvx) | Veyrax integration |
| webmind | webmind-mcp (uvx) | Web intelligence |
| youtube-info | @anthropic/mcp-youtube | YouTube metadata |
Use AskUserQuestion with options:
- Office (Excel, Word, PowerPoint, PDF)
- Browser (Playwright, Chrome DevTools, Brave)
- APIs (Notion, GitHub, Gmail, Outlook)
- AI/LLM (Codex, Context7, Taskmaster)
- Utilities (Memory, Desktop, YouTube)
Based on category choice, present specific MCPs with descriptions.
.mcp.json or create newmcpServers.mcp.json{
"mcp-name": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@package/name"]
}
}
{
"mcp-name": {
"command": "cmd",
"args": ["/c", "uvx", "package-name"]
}
}
{
"mcp-name": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@package/name"],
"env": {
"API_KEY": "${API_KEY}"
}
}
}
"excel": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-excel"]
}
"word": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-word"]
}
"powerpoint": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-powerpoint"]
}
"pdf-reader": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-pdf-reader"]
}
"playwright": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@playwright/mcp@latest"]
}
"chrome-devtools": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-chrome-devtools"]
}
"brave": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-brave"],
"env": {
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
}
}
"notion": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@suekou/mcp-notion-server"],
"env": {
"NOTION_API_TOKEN": "${NOTION_API_TOKEN}",
"NOTION_MARKDOWN_CONVERSION": "true"
}
}
"github": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-github"],
"env": {
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
}
}
"gmail": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-gmail"],
"env": {
"GMAIL_CREDENTIALS": "${GMAIL_CREDENTIALS}"
}
}
"codex-cli": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-codex"]
}
"taskmaster": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-taskmaster"]
}
"basic-memory": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-memory"]
}
"youtube-info": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@anthropic/mcp-youtube"]
}
| MCP | Required Env Vars |
|---|---|
| notion | NOTION_API_TOKEN |
| github | GITHUB_TOKEN |
| brave | BRAVE_API_KEY |
| gmail | GMAIL_CREDENTIALS |
| outlook | OUTLOOK_CREDENTIALS |
After installation:
| Problem | Solution |
|---|---|
npx not found | Install Node.js |
uvx not found | pip install uv |
| MCP not loading | Check .mcp.json syntax |
| Auth errors | Verify environment variables |
| Timeout | Check network connectivity |
julien-mcp-* skills.mcp.jsonThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.