Dragonscale-Labs/codeswarm-mcp-server
If you are the rightful owner of codeswarm-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
CodeSwarm MCP Server facilitates integration with Cursor and other MCP-compatible tools.
CodeSwarm MCP Server
MCP server for CodeSwarm, enabling integration with Cursor and other MCP-compatible tools.
Installation
Install globally with your preferred package manager:
pnpm add -g @codeswarm/mcp-server
# or
npm install -g @codeswarm/mcp-server
# or
yarn global add @codeswarm/mcp-server
Usage
Run the MCP server with your API key:
CODESWARM_API_KEY=YOUR_API_KEY pnpx @codeswarm/mcp-server
Or set the environment variable in your shell/profile.
MCP Config Example (for Cursor)
Add this to your .cursor/mcp.json
or MCP config:
{
"mcpServers": {
"CodeSwarm": {
"command": "pnpx",
"args": [
"@codeswarm/mcp-server"
],
"env": {
"CODESWARM_API_KEY": "YOUR_API_KEY"
}
}
}
}
Development
Clone the repo and install dependencies:
pnpm install
Build the project:
pnpm build
Run in development mode:
pnpm dev
License
MIT