Skip to Content
🎉 Keadex Mina v3 is now available!

Local Mina MCP Server

Keadex Mina provides a local MCP server  with 26+ tools and a specialized agent skill that enable AI agents to generate, explore, and reason about Keadex Mina projects and C4 Model architecture diagrams.

Supported Platforms

PlatformArchitecture
Linuxx64
macOSx64, arm64
Windowsx64

Usage

Installation

Keadex Mina Skill

Add the Keadex Mina skill to your AI assistant (e.g. Claude, Cursor). The skill provides the necessary prompts and logic to work with Mina projects, and it will automatically use the MCP server to execute commands.

npx skills add keadex/keadex -s keadex-mina

MCP Server

No manual installation is required. Run the MCP server directly with npx:

npx @keadex/mina-mcp-server

MCP Client Configuration

Claude Desktop

Add the following to your claude_desktop_config.json:

{ "mcpServers": { "mina": { "command": "npx", "args": ["-y", "@keadex/mina-mcp-server"] } } }

Cursor

Add the following to your Cursor MCP settings:

{ "mcpServers": { "mina": { "command": "npx", "args": ["-y", "@keadex/mina-mcp-server"] } } }

How It Works

AI Assistant (Claude, Cursor, etc.) │ MCP protocol (stdio) @keadex/mina-mcp-server ├── Rust binary ← handles MCP protocol └── JS bridge ← runs Mina rendering logic

The package ships a precompiled Rust binary for your platform (installed automatically as an optional dependency) alongside a JavaScript bridge that executes Mina’s rendering and parsing logic. The correct binary for your OS and architecture is resolved automatically at runtime.

Example Prompts

Once the MCP server is connected to your AI assistant, you can ask things like:

  • “List all the diagrams in my Mina project”
  • “Show me the system context diagram for the payment service”
  • “Render the container diagram for the frontend application”
  • “What are the relationships between the components in the auth service diagram?”
  • “Summarize the architecture described in my Mina project”
Keadex logo
Keadex ©2026. Code licensed under an MIT-style License. Documentation licensed under CC BY 4.0.
Privacy Policy  |  Terms & Conditions