Overview
ip-mcp-server is a server designed to handle IP Management Control Protocol (MCP) functionalities, allowing for efficient management of IP addresses in a network.
To use ip-mcp-server, clone the repository from GitHub, configure the server settings as per your network requirements, and run the server using the provided command line instructions.
- Efficient IP address management - Support for multiple network configurations - Easy integration with existing network infrastructure
- Managing IP addresses in large corporate networks.
- Automating IP address allocation and deallocation.
- Monitoring IP address usage and availability.
Add to your AI client
Use these steps to connect Ip Mcp Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"ip-mcp-server-huangxinping": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ip-mcp-server-huangxinping"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"ip-mcp-server-huangxinping": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ip-mcp-server-huangxinping"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"ip-mcp-server-huangxinping": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ip-mcp-server-huangxinping"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"ip-mcp-server-huangxinping": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ip-mcp-server-huangxinping"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"ip-mcp-server-huangxinping": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ip-mcp-server-huangxinping"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"ip-mcp-server-huangxinping": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-ip-mcp-server-huangxinping"
]
}
}
}FAQ
What protocols does ip-mcp-server support?
ip-mcp-server primarily supports the IP Management Control Protocol (MCP).
Is ip-mcp-server open source?
Yes! ip-mcp-server is open source and available under the MIT license.
How can I contribute to ip-mcp-server?
Contributions are welcome! Please check the GitHub repository for guidelines on how to contribute.