Skip to main content

MCP Providers

caution
  • 避免 API Wrapper 类型的 MCP - 效率低下、浪费 Token
  • 避免启用太多用不到的 MCP - 浪费 Token
{
"mcpServers": {
"linear": {
"type": "http",
"url": "https://mcp.linear.app/mcp"
},
"github": {
"type": "http",
"url": "https://api.githubcopilot.com/mcp",
"headers": {
"Authorization": "Bearer ${GITHUB_MCP_PAT}"
}
},
"gitlab": {
"type": "sse",
"url": "http://localhost:3002/sse"
},
"todoist": {
"type": "stdio",
"command": "npx",
"args": ["@doist/todoist-ai"],
"env": {
"TODOIST_API_KEY": "${TODOIST_API_KEY}"
}
},
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY}"
}
},
"feishu": {
"command": "npx",
"args": [
"-y",
"@larksuiteoapi/lark-mcp",
"mcp",
"-a",
"${FEISHU_APP_ID}",
"-s",
"${FEISHU_APP_SECRET}",
"-t",
"preset.default,im.v1.message,im.v1.message.resource"
]
}
}
}