Install MCP Server to Claude Code CLI


You can also configure the InfraNodus MCP server in Claude Code. The easiest way to install it is to run the following command in your terminal:


	claude mcp add infranodus -s user \
	-- env INFRANODUS_API_KEY=YOUR_INRANODUS_KEY \
		npx -y infranodus-mcp-server
								

In this case, a configuration will be added to your Claude Code configuration file usually located at `~/Your_User_Name/.claude.json` (your username home directory). You can also add the configuration manually if you open that file, find `mcpServers` section (create it if it doesn't exist) and add the InfraNodus mcp server activation setting:


	{
		"mcpServers": {
			"infranodus": {
				"type": "stdio",
				"command": "env",
				"args": [
					"INFRANODUS_API_KEY=YOUR_INFRANODUS_API_KEY",
					"npx",
					"-y",
					"infranodus-mcp-server"
				],
				"env": {}
				}
		}
	}