Install MCP Server to Cursor IDE / Claude Desktop


If you are using a local LLM client you can add the InfraNodus MCP server directly via the configuration file. The advantage is that you don't rely on additional server infrastructure:

1. Open Cursor and go to the Settings > Cursor Settings >Tools & MCP page. Then click the Add New MCP Server button and Cursor will automatically open the settings file for you.

2. In Claude Desktop, open the Settings > Developer > Local MCP Severs > Edit Config and edit the configuration file.

The Claude Desktop configuration file is usually located at:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

3. Add the following configuration to the file. Make sure to provide your InfraNodus API key in the "env" field below

{
	"mcpServers": {
		"infranodus": {
			"command": "npx",
			"args": [
				"-y",
				"infranodus-mcp-server"
			],
			"env": {
				"INFRANODUS_API_KEY": "your-api-key-here"
			}		
		}
	}
}

This instructs your Claude or Cursor to launch InfraNodus MCP remotely using `npx` package manager and the InfraNodus MCP server npm package.