docs/integrations/mcp-server-configuration.mdx
MCP servers provide additional functionality to coding agents through standardized protocols. You can configure different MCP servers for each coding agent in Vibe Kanban, giving them access to specialized tools like browser automation, access to remote logs, error tracking via Sentry, or documentation from Notion.
Vibe Kanban provides one-click installation for popular MCP servers. Click a card to insert a pre-configured MCP server into the JSON configuration.
<Frame> </Frame>You can also add your own MCP servers by configuring them manually:
<Steps> <Step title="Select Coding Agent"> Choose the coding agent you want to configure MCP servers for from the **Agent** dropdown. </Step> <Step title="Update Server Configuration JSON"> In the **Server Configuration (JSON)** editor, add your custom MCP server configuration. The JSON will show the current configuration for the selected agent, and you can modify it to include additional servers.Example addition:
{
"mcpServers": {
"existing_server": {
"command": "npx",
"args": ["-y", "some-existing-server"]
},
"my_custom_server": {
"command": "node",
"args": ["/path/to/my-server.js"]
}
}
}