phpIPAM MCP Server
Enables LLMs to manage IP addresses, subnets, and network sections through natural language, with security features like read-only by default.
README
phpIPAM MCP Server
A Model Context Protocol (MCP) server for phpIPAM IP Address Management. This server enables LLMs to manage IP addresses, subnets, and network sections through natural language.
Features
- Full IPAM Operations: List, search, allocate, and release IP addresses
- Subnet Management: View and create subnets with proper CIDR validation
- Section Organization: Manage phpIPAM sections for logical grouping
- Security First: Write operations disabled by default with granular toggles
- Retry Logic: Automatic retry with exponential backoff for transient errors
- Docker Ready: Minimal container image with non-root user
Quick Start
Docker (Recommended)
docker run -i --rm \
-e PHPIPAM_BASE_URL=https://phpipam.example.com \
-e PHPIPAM_APP_ID=myapp \
-e PHPIPAM_USERNAME=admin \
-e PHPIPAM_PASSWORD=your-password \
mcp/phpipam-mcp
From Source
# Clone the repository
git clone https://github.com/alsamasu/phpipam-mcp.git
cd phpipam-mcp
# Install dependencies
npm install
# Build
npm run build
# Run (with environment variables set)
node dist/index.js
Configuration
All configuration is done through environment variables:
Required Settings
| Variable | Description | Example |
|---|---|---|
PHPIPAM_BASE_URL |
Base URL of phpIPAM instance | https://phpipam.example.com |
PHPIPAM_APP_ID |
API application ID | myapp |
PHPIPAM_USERNAME |
phpIPAM username | admin |
PHPIPAM_PASSWORD |
phpIPAM password | your-password |
phpIPAM API Setup
- Log in to phpIPAM as an administrator
- Go to Administration > API
- Create a new API application:
- App ID: Choose a name (e.g.,
myapp) - App Security: Select User token
- App permissions: Set based on your needs (read/write/admin)
- App ID: Choose a name (e.g.,
- Use the App ID and your phpIPAM credentials with this server
Feature Toggles
All write operations are disabled by default for security:
| Variable | Default | Description |
|---|---|---|
PHPIPAM_WRITE_ENABLED |
false |
Enable write operations (allocate, release, upsert) |
PHPIPAM_VERIFY_TLS |
true |
Verify TLS certificates |
PHPIPAM_ENABLE_CACHE |
false |
Cache API responses (60s TTL) |
PHPIPAM_DEBUG_HTTP |
false |
Log HTTP request/response details |
PHPIPAM_ALLOW_SUBNET_CREATE |
false |
Allow subnet creation via subnets.ensure |
PHPIPAM_ALLOW_SECTION_CREATE |
false |
Allow section creation via sections.ensure |
Performance Settings
| Variable | Default | Description |
|---|---|---|
PHPIPAM_TIMEOUT |
30000 |
Request timeout in milliseconds |
PHPIPAM_MAX_RETRIES |
3 |
Maximum retry attempts |
PHPIPAM_RETRY_DELAY |
1000 |
Base retry delay in milliseconds |
Available Tools
Read Operations (Always Available)
| Tool | Description |
|---|---|
phpipam.health |
Check connectivity and authentication |
phpipam.sections.list |
List all sections |
phpipam.sections.get |
Get section by ID or name |
phpipam.subnets.list |
List subnets in a section |
phpipam.subnets.get |
Get subnet by ID or CIDR |
phpipam.addresses.list |
List addresses in a subnet |
phpipam.addresses.get |
Get address by ID or IP |
phpipam.search |
Search by IP, hostname, or MAC |
Write Operations (Require PHPIPAM_WRITE_ENABLED=true)
| Tool | Description |
|---|---|
phpipam.addresses.allocate |
Allocate first free IP in subnet |
phpipam.addresses.release |
Release (delete) an IP address |
phpipam.addresses.upsert |
Create or update an IP address |
Create Operations (Require Additional Toggles)
| Tool | Required Toggle | Description |
|---|---|---|
phpipam.subnets.ensure |
PHPIPAM_ALLOW_SUBNET_CREATE=true |
Create subnet if not exists |
phpipam.sections.ensure |
PHPIPAM_ALLOW_SECTION_CREATE=true |
Create section if not exists |
MCP Client Configuration
Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"phpipam": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "PHPIPAM_BASE_URL=https://phpipam.example.com",
"-e", "PHPIPAM_APP_ID=myapp",
"-e", "PHPIPAM_USERNAME=admin",
"-e", "PHPIPAM_PASSWORD=your-password",
"mcp/phpipam-mcp"
]
}
}
}
With Write Operations Enabled
{
"mcpServers": {
"phpipam": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "PHPIPAM_BASE_URL=https://phpipam.example.com",
"-e", "PHPIPAM_APP_ID=myapp",
"-e", "PHPIPAM_USERNAME=admin",
"-e", "PHPIPAM_PASSWORD=your-password",
"-e", "PHPIPAM_WRITE_ENABLED=true",
"mcp/phpipam-mcp"
]
}
}
}
Common Workflows
Lookup and Allocate IP
- Search for existing assignment:
phpipam.search { "query": "webserver01" } - Find available subnet:
phpipam.subnets.list { "sectionId": "1" } - Allocate IP:
phpipam.addresses.allocate { "subnetId": "5", "hostname": "webserver01" }
Audit IP Usage
- List sections:
phpipam.sections.list - List subnets:
phpipam.subnets.list { "sectionId": "1" } - View addresses:
phpipam.addresses.list { "subnetId": "5" }
Release IP
- Find the IP:
phpipam.addresses.get { "ip": "192.168.1.50" } - Release it:
phpipam.addresses.release { "ip": "192.168.1.50" }
Error Handling
The server returns structured errors with these codes:
| Code | Description | Retryable |
|---|---|---|
AUTH |
Authentication failure | No |
VALIDATION |
Invalid input parameters | No |
NOT_FOUND |
Resource not found | No |
CONFLICT |
Resource conflict (duplicate) | No |
FORBIDDEN |
Operation not permitted (toggle disabled) | No |
RETRYABLE |
Transient error (timeout, 5xx) | Yes |
INTERNAL |
Unexpected server error | No |
Security Considerations
- Read-Only by Default: Write operations require explicit opt-in
- Granular Permissions: Subnet/section creation have separate toggles
- TLS Verification: Enabled by default, only disable for development
- No Secret Logging: Credentials are never logged (even with debug enabled)
- Non-Root Container: Docker image runs as unprivileged user
- Bounded Retries: Maximum 3 retries with exponential backoff
Development
# Install dependencies
npm install
# Run in development mode
npm run dev
# Run linter
npm run lint
# Run tests
npm test
# Build for production
npm run build
License
MIT License - see LICENSE for details.
Contributing
Contributions are welcome! Please open an issue or submit a pull request.
Related Projects
- phpIPAM - Open source IP address management
- Model Context Protocol - Protocol for LLM tool integration
- Docker MCP Catalog - Docker's MCP server registry
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。