- Home
- MCP servers
- CodeMind
CodeMind
- typescript
1
GitHub Stars
typescript
Language
2 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"onepiecelwc-codemind-mcp": {
"command": "codemind-mcp",
"args": [],
"env": {
"COZE_API_KEY": "YOUR_COZE_API_KEY"
}
}
}
}CodeMind MCP is a server that automates repository understanding and generates mind maps to help you quickly grasp codebases. It streamlines repository management tasks like handling issues and pull requests, and produces a visual, explorable representation of project structure.
How to use
You run the CodeMind MCP server via an MCP client. Configure the client to connect to the CodeMind MCP server by registering a stdio-based MCP entry using the npx command provided below. Once connected, you can trigger the mind map generation to explore README content across your project and receive a publicly accessible mind map link.
Common usage patterns include: 1) starting the MCP client and loading the CodeMind MCP server, 2) invoking a mind map generation to scan all README.md files in your repository, 3) retrieving a consolidated mind map link you can share with teammates.
How to install
npm install -g @lucianaib/codemind-mcp
codemind-mcp
After installing, configure your MCP client to recognize CodeMind as an MCP server by adding the following configuration.
{
"mcpServers": {
"CodeMind": {
"command": "npx",
"args": ["@lucianaib/codemind-mcp"]
}
}
}
Available tools
gitcode_request
General GitCode API wrapper to manage repositories, pull requests, issues, and related data.
mindmap
Reads all README.md files in the current directory and subdirectories, merges their content, and triggers a Coze workflow to produce a mind map; returns a publicly accessible link.