mcp-server-configslisted
Install: claude install-skill Mixard/fable-pack
# MCP Server Configs
Reference snapshot of working MCP server configurations (package names and URLs verified as of mid-2026; versions drift, treat as a lookup aid). Copy entries into the `mcpServers` section of `~/.claude.json` (global) or `.mcp.json` (project).
Config shapes:
- stdio servers: `{"command": ..., "args": [...], "env": {...}}`
- hosted HTTP servers: `{"type": "http", "url": ..., "headers": {...}}`
Keeping under ~10 servers enabled preserves context window; tool schemas from every enabled server load into context.
## stdio servers
```json
{
"jira": {
"command": "uvx",
"args": ["mcp-atlassian==0.21.0"],
"env": {
"JIRA_URL": "...",
"JIRA_EMAIL": "...",
"JIRA_API_TOKEN": "..."
}
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": { "GITHUB_PERSONAL_ACCESS_TOKEN": "..." }
},
"firecrawl": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": { "FIRECRAWL_API_KEY": "..." }
},
"supabase": {
"command": "npx",
"args": ["-y", "@supabase/mcp-server-supabase@latest", "--project-ref=PROJECT_REF"]
},
"memory": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"]
},
"sequential-thinking": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"]
},
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/projects"]