MCPez is a web-based management platform designed to simplify the definition, configuration, management, and monitoring of backend services such as AI models, local scripts, or remote APIs. It exposes these services through standardized proxy interfaces (SSE or STDIO), making them easy to integrate and use by other applications, particularly AI agents that need to call tools.
Build the Docker image:
docker build -t MCPez .
Run the Docker container:
docker run -d -p 8088:80 --name MCPez-instance -v MCPez_data:/data MCPez
-d
: Run in background mode-p 8088:80
: Map host port 8088 to container port 80 (Nginx default port). You can change the host port as needed.--name MCPez-instance
: Name for the container-v MCPez_data:/data
: Create a Docker volume to persist SQLite database and service configurationsOpen your browser and navigate to http://localhost:8088
(or your specified host port).
The main interface (index.html
) provides an overview of all your applications and their status:
Access the application editor (edit.html
) to create or modify applications:
edit.html
edit.html?id=<app_id>
Within the application editor:
The AI Playground (chat.html
) allows you to test your configured services with AI models:
http://localhost:8088/mcp/<app_id>/sse
)SSE Services:
STDIO Services:
For frequently used service configurations:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "mcpez" '{"command":"docker","args":["run","-p","8088:80","--name","MCPez-instance","-v","MCPez_data:/data","MCPez"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"mcpez": {
"command": "docker",
"args": [
"run",
"-p",
"8088:80",
"--name",
"MCPez-instance",
"-v",
"MCPez_data:/data",
"MCPez"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"mcpez": {
"command": "docker",
"args": [
"run",
"-p",
"8088:80",
"--name",
"MCPez-instance",
"-v",
"MCPez_data:/data",
"MCPez"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect