Connect to Cursor
Use your Micipi MCP tools directly inside Cursor IDE for AI-powered coding workflows.
Step 1: Open MCP Settings
In Cursor, open Settings and navigate to the MCP section. You can also create a .cursor/mcp.json file in your project root.
Step 2: Add your server
Add your Micipi server configuration:
{
"mcpServers": {
"my-micipi-server": {
"command": "npx",
"args": [
"mcp-remote",
"https://gateway.micipi.com/s/your-server-name",
"--header",
"Authorization:${AUTH_TOKEN}"
],
"env": {
"AUTH_TOKEN": "Bearer mcp_your_api_key_here"
}
}
}
}Replace your-server-name and mcp_your_api_key_here with your actual values from the Micipi dashboard.
Step 3: Use in Agent Mode
Switch Cursor to Agent mode (not Ask mode). Your MCP tools will be available for the AI to use when relevant to your coding task.
For example, if your MCP server provides a database query tool, you can ask Cursor to "check the schema for the users table" and it will automatically call your tool.
Project vs Global Config
Project-level: Place .cursor/mcp.json in your project root. The server is only available in that project.
Global: Add the server through Cursor Settings to make it available across all projects.