Last active
December 12, 2025 09:13
-
-
Save kkiyama117/c838f590b9a51acf4bb0b7516c682683 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "mcpServers": { | |
| "arxiv-mcp-server": { | |
| "type": "stdio", | |
| "command": "uvx", | |
| "args": [ | |
| "arxiv-mcp-server" | |
| ], | |
| "env": {} | |
| }, | |
| "ccusage": { | |
| "command": "npx", | |
| "args": [ | |
| "@ccusage/mcp@latest" | |
| ], | |
| "env": {} | |
| }, | |
| "context7": { | |
| "type": "http", | |
| "url": "https://mcp.context7.com/mcp", | |
| "headers": { | |
| "CONTEXT7_API_KEY": "${MCP_CONTEXT7_API_KEY}" | |
| } | |
| }, | |
| "deepwiki": { | |
| "type": "http", | |
| "url": "https://mcp.deepwiki.com/mcp" | |
| }, | |
| "playwright": { | |
| "command": "npx", | |
| "args": [ | |
| "@playwright/mcp@latest" | |
| ] | |
| }, | |
| "repomix": { | |
| "type": "stdio", | |
| "command": "npx", | |
| "args": [ | |
| "-y", | |
| "repomix", | |
| "--mcp" | |
| ], | |
| "env": {} | |
| }, | |
| "serena": { | |
| "type": "stdio", | |
| "command": "uvx", | |
| "args": [ | |
| "--from", | |
| "git+https://github.com/oraios/serena", | |
| "serena", | |
| "start-mcp-server" | |
| ], | |
| "env": {} | |
| }, | |
| "zen": { | |
| "command": "bash", | |
| "args": [ | |
| "-c", | |
| "for p in $(which uvx 2>/dev/null) $HOME/.local/bin/uvx /opt/homebrew/bin/uvx /usr/local/bin/uvx uvx; do [ -x \"$p\" ] && exec \"$p\" --from git+https://github.com/BeehiveInnovations/pal-mcp-server.git pal-mcp-server; done; echo 'uvx not found' >&2; exit 1" | |
| ], | |
| "env": { | |
| "PATH": "/usr/local/bin:/usr/bin:/bin:/opt/homebrew/bin:~/.local/bin", | |
| "GEMINI_API_KEY": "${MCP_GEMINI_API_KEY}", | |
| "OPENROUTER_API_KEY": "${MCP_OPENROUTER_API_KEY}", | |
| "DISABLED_TOOLS": "analyze,refactor,testgen,secaudit,docgen,tracer", | |
| "DEFAULT_MODEL": "auto", | |
| "TZ": "asia/Tokyo" | |
| }, | |
| "envFile": "${workspaceFolder}/.env" | |
| }, | |
| "zotero": { | |
| "command": "/home/kiyama/.local/bin/zotero-mcp", | |
| "env": { | |
| "ZOTERO_LOCAL": "true", | |
| "ZOTERO_API_KEY": "${MCP_ZOTERO_API_KEY}", | |
| "ZOTERO_EMBEDDING_MODEL": "gemini", | |
| "GEMINI_API_KEY": "${MCP_GEMINI_API_KEY}", | |
| "GEMINI_EMBEDDING_MODEL": "models/gemini-embedding-exp-03-07" | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment