drio
Open app

Kibela MCP Server

Source

Mirror of

Catalog onlyCatalog onlySTDIO

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.
  1. Automating note retrieval for personal knowledge management.
  2. Enhancing LLM capabilities by providing access to structured note data.
  3. Integrating Kibela content into applications for improved user experience.

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": {
    "kiwamizamurai-mcp-kibela-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kiwamizamurai-mcp-kibela-server-mcp-mirror"
      ]
    }
  }
}

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": {
    "kiwamizamurai-mcp-kibela-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kiwamizamurai-mcp-kibela-server-mcp-mirror"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "kiwamizamurai-mcp-kibela-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kiwamizamurai-mcp-kibela-server-mcp-mirror"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "kiwamizamurai-mcp-kibela-server-mcp-mirror": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kiwamizamurai-mcp-kibela-server-mcp-mirror"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "kiwamizamurai-mcp-kibela-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kiwamizamurai-mcp-kibela-server-mcp-mirror"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "kiwamizamurai-mcp-kibela-server-mcp-mirror": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kiwamizamurai-mcp-kibela-server-mcp-mirror"
      ]
    }
  }
}

FAQ

What do I need to run the Kibela MCP Server?

You need to set up 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 MCP servers.

Is there any documentation available?

Yes, detailed documentation is provided in the project repository.