Installation guide
Connect your AI tool to the Klaxoon MCP server using OAuth auto-discovery or your own OAuth application.
Connect your AI tool to the Klaxoon MCP server so you can work with boards (sticky-notes, text, shapes, and more).
Use the server URL https://api.klaxoon.com/mcp in the configuration for your client.
Option 1: Auto-discovery (recommended)
Use OAuth auto-discovery to connect without copying or pasting a token.
- Add the Klaxoon MCP server to your client.
- Start the MCP connection from your client.
- Complete the browser sign-in flow with your Klaxoon account.
- Return to your client after the session is configured automatically.
Add this configuration to .cursor/mcp.json for the current project, or to ~/.cursor/mcp.json for all projects:
{
"mcpServers": {
"klaxoon": {
"url": "https://api.klaxoon.com/mcp"
}
}
}Optional: Use your own OAuth application
Use your own OAuth application if your client does not support auto-discovery, or if you want to manage your own OAuth credentials.
- Create an OAuth application by following Register your app.
- Configure the application with these values:
- Use the
mcpscope. - Register the redirect URI required by the target client.
- Keep the generated
client_id. - Keep the generated
client_secretif the client supports custom OAuth credentials.
- Use the
{
"mcpServers": {
"klaxoon": {
"url": "https://api.klaxoon.com/mcp",
"auth": {
"CLIENT_ID": "<your-client-id>",
"CLIENT_SECRET": "<your-client-secret>",
"scopes": ["mcp"]
}
}
}
}Updated 13 days ago
