Kibela MCP Server
MCP server implementation for Kibela API integration
Overview
Kibela MCP Server is an implementation designed for integrating with the Kibela API, allowing large language models (LLMs) to interact with Kibela content seamlessly.
To use the Kibela MCP Server, configure your environment variables with your Kibela team name and API token, and integrate it with tools like Claude Desktop or Cursor by adding the appropriate configuration to their respective JSON files.
- Search notes within Kibela. - Retrieve your latest notes. - Access note content and comments.
- Automating note retrieval for team collaboration.
- Enhancing search capabilities for knowledge management.
- Integrating with AI tools for improved content interaction.
Add to your AI client
Use these steps to connect Kibela MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-kibela-server-kiwamizamurai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-kibela-server-kiwamizamurai"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-kibela-server-kiwamizamurai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-kibela-server-kiwamizamurai"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-kibela-server-kiwamizamurai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-kibela-server-kiwamizamurai"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-kibela-server-kiwamizamurai": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-kibela-server-kiwamizamurai"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-kibela-server-kiwamizamurai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-kibela-server-kiwamizamurai"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-kibela-server-kiwamizamurai": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-kibela-server-kiwamizamurai"
]
}
}
}FAQ
What do I need to run the Kibela MCP Server?
You need to set your Kibela team name and API token as environment variables.
Can I use Kibela MCP Server with other applications?
Yes! It can be integrated with various applications that support the Model Context Protocol.
Is there any documentation available?
Yes, detailed documentation is available at the provided reference links.