kiuwo-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@kiuwo-mcpcreate a mind map about project planning"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Ensure Node.js 18+ and Yarn are installed.
Install dependencies:
yarn installBuild the server:
yarn buildUsage
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.jsAvailable 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)
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Turn outlines and hierarchical notes into interactive mind maps through a hosted remote MCP server.
MCP server for generating rough-draft project plans from natural-language prompts.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceA 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-
- AlicenseDqualityDmaintenanceAn 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.151 npm1MIT
- FlicenseAqualityCmaintenanceAn 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.8-
- AlicenseNot gradedqualityBmaintenanceOfficial MCP server for creating, reading, and updating mind maps on coret.id from AI agents. Changes appear live in the Coret editor.MIT