Skip to main content

MCP Providers

caution
  • 避免 API Wrapper 类型的 MCP - 效率低下、浪费 Token
  • 避免启用太多用不到的 MCP - 浪费 Token

Commercial

{
"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"
]
}
}
}
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY}"
}
},
"playwright": {
"command": "pnpx",
"args": ["@playwright/mcp@latest", "--isolated"]
},
"gitlab": {
"command": "pnpx",
"args": ["@zereight/mcp-gitlab"],
"env": {
"GITLAB_PERSONAL_ACCESS_TOKEN": "your_gitlab_token",
"GITLAB_API_URL": "your_gitlab_api_url",
"GITLAB_PROJECT_ID": "your_project_id", // Optional: default project
"GITLAB_ALLOWED_PROJECT_IDS": "", // Optional: comma-separated list of allowed project IDs
"GITLAB_READ_ONLY_MODE": "false",
"USE_GITLAB_WIKI": "false", // use wiki api?
"USE_MILESTONE": "false", // use milestone api?
"USE_PIPELINE": "false" // use pipeline api?
}
}
}
}

Postgres

{
"mcpServers": {
"postgres": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "DATABASE_URI", "crystaldba/postgres-mcp", "--access-mode=unrestricted"],
"env": {
"DATABASE_URI": "postgresql://username:password@localhost:5432/dbname"
}
}
}
}

Gitlab

services:
gitlab-mcp:
image: iwakitakuma/gitlab-mcp
container_name: gitlab-mcp
restart: unless-stopped
ports:
- 3002:3002
# http://localhost:3002/sse
environment:
- GITLAB_PERSONAL_ACCESS_TOKEN=${GITLAB_MCP_PAT}
- GITLAB_API_URL=https://gitlab.com/api/v4
- GITLAB_READ_ONLY_MODE=true
- USE_GITLAB_WIKI=false
- USE_MILESTONE=false
- USE_PIPELINE=false
- SSE=true

公众号

Prometheus

Chrome DevTool MCP

{
"mcpServers": {
"chrome-devtools": {
"command": "pnpx",
"args": ["chrome-devtools-mcp@latest"]
}
}
}
Verify in the browser that your change works as expected.

A few images on localhost:8080 are not loading. What's happening?

Why does submitting the form fail after entering an email address?

The page on localhost:8080 looks strange and off. Check what's happening there.

Localhost:8080 is loading slowly. Make it load faster.

Please check the LCP of web.dev.