MCP server implementation for Kibela API integration, enabling LLMs to interact with Kibela content.
KIBELA_TEAM
: Your Kibela team name (required)KIBELA_TOKEN
: Your Kibela API token (required)Add to your claude_desktop_config.json
:
{
"mcpServers": {
"kibela": {
"command": "npx",
"args": ["-y", "@kiwamizamurai/mcp-kibela-server"],
"env": {
"KIBELA_TEAM": "your-team",
"KIBELA_TOKEN": "your-token"
}
}
}
}
Add to your ~/.cursor/config.json
:
{
"mcp": {
"servers": {
"kibela": {
"command": "node",
"args": ["dist/src/index.js"],
"env": {
"KIBELA_TEAM": "your-team",
"KIBELA_TOKEN": "your-token"
}
}
}
}
}
For SSE transport, ensure the server URL is set to: http://localhost:3000/sse
Search Kibela notes with given query
query
(string): Search queryGet your latest notes from Kibela
limit
(number, optional): Number of notes to fetch (default: 15)Get content and comments of a specific note
id
(string): Note IDSeamless access to top MCP servers powering the future of AI integration.