phpIPAM MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@phpIPAM MCP Serverlist all subnets in section Office"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: NetBox MCP Server
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-mcpFrom 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.jsConfiguration
All configuration is done through environment variables:
Required Settings
Variable | Description | Example |
| Base URL of phpIPAM instance |
|
| API application ID |
|
| phpIPAM username |
|
| phpIPAM 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)
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 |
|
| Enable write operations (allocate, release, upsert) |
|
| Verify TLS certificates |
|
| Cache API responses (60s TTL) |
|
| Log HTTP request/response details |
|
| Allow subnet creation via |
|
| Allow section creation via |
Performance Settings
Variable | Default | Description |
|
| Request timeout in milliseconds |
|
| Maximum retry attempts |
|
| Base retry delay in milliseconds |
Available Tools
Read Operations (Always Available)
Tool | Description |
| Check connectivity and authentication |
| List all sections |
| Get section by ID or name |
| List subnets in a section |
| Get subnet by ID or CIDR |
| List addresses in a subnet |
| Get address by ID or IP |
| Search by IP, hostname, or MAC |
Write Operations (Require PHPIPAM_WRITE_ENABLED=true)
Tool | Description |
| Allocate first free IP in subnet |
| Release (delete) an IP address |
| Create or update an IP address |
Create Operations (Require Additional Toggles)
Tool | Required Toggle | Description |
|
| Create subnet if not exists |
|
| 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.listList 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 |
| Authentication failure | No |
| Invalid input parameters | No |
| Resource not found | No |
| Resource conflict (duplicate) | No |
| Operation not permitted (toggle disabled) | No |
| Transient error (timeout, 5xx) | Yes |
| 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 buildLicense
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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/alsamasu/phpipam-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server