MCP (Model Context Protocol) server for the Sliplane API.
Warning: You can execute destructive commands against your deployments. Use with caution and always double check your commands before executing them.
- API Key: Your personal API key from your Sliplane account
- Organization ID: Your organization identifier from your Sliplane account
Find both in your Sliplane team settings.
The server is hosted at https://mcp.sliplane.io - no self-hosting required for normal usage.
claude mcp add sliplane https://mcp.sliplane.io \
-t sse \
-H "Authorization: Bearer yourapikeyhere" \
-H "X-Organization-Id: yourorganizationidhere"Go to Cursor Settings → Tools & Integrations → MCP Tools and add:
{
"mcpServers": {
"sliplane": {
"url": "https://mcp.sliplane.io",
"type": "sse",
"headers": {
"Authorization": "Bearer yourapikeyhere",
"X-Organization-Id": "yourorganizationidhere"
}
}
}
}Create .vscode/mcp.json in your repository:
{
"servers": {
"sliplane": {
"type": "sse",
"url": "https://mcp.sliplane.io",
"headers": {
"Authorization": "Bearer yourapikeyhere",
"X-Organization-Id": "yourorganizationidhere"
}
}
}
}- URL:
https://mcp.sliplane.io - Type:
StreamableHTTP - Headers:
Authorization: Bearer yourapikeyhereX-Organization-Id: yourorganizationidhere
The MCP server mirrors the Sliplane public API. You can:
- Manage deployments
- Access project information
- Monitor application status
- Execute deployment operations
Only needed if you want to modify the server. For normal usage, use the hosted version above.
uv sync
uv run main.pyOr with Docker:
docker build -t sliplane-mcp .
docker run -p 8000:8000 sliplane-mcp