skills/mcp-setup/SKILL.md
Configure popular MCP servers for enhanced agent capabilities
npx skillsauth add Thomashighbaugh/opencode mcp-setupInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Configure Model Context Protocol (MCP) servers to extend OpenCode's capabilities with external tools like web search, file system access, and GitHub integration.
MCP servers provide additional tools that OpenCode agents can use. This skill helps you configure popular MCP servers using the opencode mcp add command-line interface.
Present the user with available MCP server options using AskUserQuestion:
Question: "Which MCP server would you like to configure?"
Options:
No API key required. Ready to use immediately.
Ask for API key:
Do you have an Exa API key?
- Get one at: https://exa.ai
- Enter your API key, or type 'skip' to configure later
Ask for allowed directories:
Which directories should the filesystem MCP have access to?
Default: Current working directory
Enter comma-separated paths, or press Enter for default
Ask for token:
Do you have a GitHub Personal Access Token?
- Create one at: https://github.com/settings/tokens
- Recommended scopes: repo, read:org
- Enter your token, or type 'skip' to configure later
Use the opencode mcp add command to configure each MCP server. The CLI automatically handles settings.json updates and merging.
opencode mcp add context7 -- npx -y @upstash/context7-mcp
opencode mcp add -e EXA_API_KEY=<user-provided-key> exa -- npx -y exa-mcp-server
opencode mcp add filesystem -- npx -y @modelcontextprotocol/server-filesystem <allowed-directories>
Option 1: Docker (local)
opencode mcp add -e GITHUB_PERSONAL_ACCESS_TOKEN=<user-provided-token> github -- docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN ghcr.io/github/github-mcp-server
Option 2: HTTP (remote)
opencode mcp add --transport http github https://api.githubcopilot.com/mcp/
Note: Docker option requires Docker installed. HTTP option is simpler but may have different capabilities.
After configuration, verify the MCP servers are properly set up:
# List configured MCP servers
opencode mcp list
This will display all configured MCP servers and their status.
MCP Server Configuration Complete!
CONFIGURED SERVERS:
[List the servers that were configured]
NEXT STEPS:
1. Restart OpenCode for changes to take effect
2. The configured MCP tools will be available to all agents
3. Run `opencode mcp list` to verify configuration
USAGE TIPS:
- Context7: Ask about library documentation (e.g., "How do I use React hooks?")
- Exa: Use for web searches (e.g., "Search the web for latest TypeScript features")
- Filesystem: Extended file operations beyond the working directory
- GitHub: Interact with GitHub repos, issues, and PRs
TROUBLESHOOTING:
- If MCP servers don't appear, run `opencode mcp list` to check status
- Ensure you have Node.js 18+ installed for npx-based servers
- For GitHub Docker option, ensure Docker is installed and running
- Run /omc-doctor to diagnose issues
MANAGING MCP SERVERS:
- Add more servers: /mcp-setup or `opencode mcp add ...`
- List servers: `opencode mcp list`
- Remove a server: `opencode mcp remove <server-name>`
If user selects "Custom":
Ask for:
stdio (default) or httpnpx my-mcp-server)https://example.com/mcp)Then construct and run the appropriate opencode mcp add command:
For stdio servers:
# Without environment variables
opencode mcp add <server-name> -- <command> [args...]
# With environment variables
opencode mcp add -e KEY1=value1 -e KEY2=value2 <server-name> -- <command> [args...]
For HTTP servers:
# Basic HTTP server
opencode mcp add --transport http <server-name> <url>
# HTTP server with headers
opencode mcp add --transport http --header "Authorization: Bearer <token>" <server-name> <url>
opencode mcp list to verify server statusopencode mcp add with correct credentials if neededopencode mcp list to confirm servers are activeopencode mcp remove <server-name>documentation
Agentic memory system for writers - track characters, relationships, scenes, and themes
documentation
LLM Wiki — persistent markdown knowledge base that compounds across sessions (Karpathy model)
tools
Use ONLY when the user explicitly says: 'use the skill web-to-markdown ...' (or 'use a skill web-to-markdown ...'). Converts webpage URLs to clean Markdown by calling the local web2md CLI (Puppeteer + Readability), suitable for JS-rendered pages.
testing
Structured visual QA verdict for screenshot-to-reference comparisons