stdout or hosting an HTTP endpoint — Python, JavaScript, Go, and more.
How it works
MCP servers expose capabilities through the protocol to connect Kombai with external tools or data sources. Kombai supports three transport methods:Installing MCP servers
1
Open the MCP server setting
Click the icon below the chat input box to open the External MCP Servers popover. Then click the + Add MCP button to open the External MCP Servers tab on the Settings page.
2
Open the MCP server setting
Click the ”+ Add MCP” button to open the
mcp.json file.3
Configure your MCP server
Add your MCP server configuration inside the
mcpServers object and save the file.See the examples below for common server configurations.4
Verify your MCP server
After saving, the External MCP Servers tab will display your configured server along with its connection status.
Examples
Set up custom MCP servers using a JSON configuration file:CLI Server - Node.js
CLI Server - Python
Remote Server
Static OAuth for remote servers
For MCP servers that rely on OAuth, you can supply static OAuth client credentials inmcp.json rather than using dynamic client registration. This is useful when:
- The MCP provider supplies you with a fixed Client ID (and optionally a Client Secret)
- The provider requires whitelisting a redirect URL (e.g. Figma, Linear)
- The provider does not support OAuth 2.0 Dynamic Client Registration
Remote Server with Static OAuth
Include an auth object in remote server entries that specify a url:Combining with config interpolation
auth values support the same interpolation syntax as other fields:
Instead of hardcoding the Client ID and Client Secret in the
mcp.json file, it is recommended to use environment variables.STDIO server configuration
For STDIO servers (local command-line servers), set the following fields in yourmcp.json:
Configuration locations
Project Configuration
Place
.kombai/mcp.json in your project root for project-specific tools.Global Configuration
Place
~/.kombai/mcp.json in your home directory for tools accessible across all projects.