codeswarm-mcp-server
0
CodeSwarm MCP Server is an MCP server designed for CodeSwarm, facilitating integration with Cursor and other MCP-compatible tools. It allows users to run the server with API keys and configure MCP settings for development purposes.
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