Skip to main content
Glama
mea-world

kiuwo-mcp

by mea-world

kiuwo-mcp

A Model Context Protocol (MCP) server exposing Kiuwo's mind map APIs as MCP tools.

Introduction

This MCP server lets AI clients (e.g., Cursor) create, search, expand, and fetch mind maps via Kiuwo's HTTP APIs. The server communicates over stdio and requires an API key.

Installation

  1. Ensure Node.js 18+ and Yarn are installed.

  2. Install dependencies:

yarn install
  1. Build the server:

yarn build

Usage

Set the required environment variable and run the server binary:

export KIUWO_API_KEY=<api-key>
export KIUWO_BASE_URL=${KIUWO_BASE_URL:-https://kiuwo.com}
export KIUWO_TIMEOUT_MS=${KIUWO_TIMEOUT_MS:-30000}
node build/index.js

Available tools:

  • create_mind_map (input: { text: string })

  • search_mind_maps (input: { query: string })

  • expand_node (input: { mindMapId: string, nodeName: string })

  • get_mind_map (input: { mindMapId: string })

All responses follow the APIResponse shape described in documentation/api.md.

How to use the MCP server with Cursor

Add a server entry to Cursor's MCP config (e.g., ~/.cursor/mcp.json):

{
  "mcpServers": {
    "kiuwo": {
      "command": "node",
      "args": ["/absolute/path/to/kiuwo-mcp/build/index.js"],
      "env": {
        "KIUWO_API_KEY": "${KIUWO_API_KEY}",
        "KIUWO_BASE_URL": "https://kiuwo.com",
        "KIUWO_TIMEOUT_MS": "90000"
      }
    }
  }
}

API reference

The server wraps Kiuwo HTTP APIs defined in documentation/api.md and expects a header X-API-key set via the environment.

Environment variables:

  • KIUWO_API_KEY (required)

  • KIUWO_BASE_URL (default: https://kiuwo.com)

  • KIUWO_TIMEOUT_MS (default: 90000)

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    C
    maintenance
    A Model Context Protocol (MCP) server that provides seamless integration between MindMup mind maps and Google Drive. This server enables you to search, retrieve, and parse MindMup files stored in your Google Drive directly through the MCP interface.
    1
  • A
    license
    D
    quality
    D
    maintenance
    An MCP server that enables users to generate structured XMind mind maps with hierarchical topics, notes, and labels through natural language. It features automatic file saving to the local Documents folder and can automatically open generated maps in the XMind application.
    1
    59
    1
    MIT
  • F
    license
    -
    quality
    C
    maintenance
    An MCP server that lets Claude or ChatGPT read, create, and edit mind maps stored in a GitHub repository, with support for local and HTTP transport.

View all related MCP servers

Related MCP Connectors

  • MCP server for generating rough-draft project plans from natural-language prompts.

  • Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.

  • An MCP server for deep research or task groups

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mea-world/kiuwo-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server