Sliplane MCP Server
Click on "Deploy 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., "@Sliplane MCP Servercheck the status of my production deployment"
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.
Sliplane MCP Server
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.
Prerequisites
OAuth: Recommended. Your MCP client opens Sliplane auth and receives a scoped Sliplane API token.
API key: Still supported for clients that do not support OAuth.
Related MCP server: Nullplatform API MCP
Installation
The server is hosted at https://mcp.sliplane.io - no self-hosting required for normal usage.
Claude Code
claude mcp add --transport http \
--client-id sliplane-mcp \
sliplane https://mcp.sliplane.ioFor API key auth:
claude mcp add --transport http \
-H "Authorization: Bearer yourapikeyhere" \
sliplane https://mcp.sliplane.ioCodex
codex mcp add sliplane \
--url https://mcp.sliplane.io \
--oauth-client-id sliplane-mcpFor API key auth:
export SLIPLANE_API_KEY=yourapikeyhere
codex mcp add sliplane \
--url https://mcp.sliplane.io \
--bearer-token-env-var SLIPLANE_API_KEYCursor
{
"mcpServers": {
"sliplane-local": {
"url": "https://mcp.sliplane.io",
"auth": {
"CLIENT_ID": "sliplane-mcp",
"scopes": ["full"]
}
}
}
}For API key auth:
{
"mcpServers": {
"sliplane": {
"url": "https://mcp.sliplane.io",
"headers": {
"Authorization": "Bearer yourapikeyhere"
}
}
}
}opencode
Run the interactive setup so opencode can store the pre-registered OAuth client ID:
$ opencode mcp add
Add MCP server
Enter MCP server name
sliplane
Select MCP server type
Remote
Enter MCP server URL
https://mcp.sliplane.io
Does this server require OAuth authentication?
Yes
Do you have a pre-registered client ID?
Yes
Enter client ID
sliplane-mcp
Do you have a client secret?
NoThen authenticate:
opencode mcp authVS Code
Create .vscode/mcp.json in your repository:
{
"servers": {
"sliplane": {
"type": "http",
"url": "https://mcp.sliplane.io",
"headers": {
"Authorization": "Bearer yourapikeyhere"
}
}
}
}Other Tools
URL:
https://mcp.sliplane.ioType:
StreamableHTTPOAuth Client ID:
sliplane-mcpOAuth scopes:
fullAPI key header:
Authorization: Bearer yourapikeyhere
What You Can Do
The MCP server mirrors the Sliplane public API. You can:
Manage deployments
Access project information
Monitor application status
Execute deployment operations
Moreover, you can discover and deploy all services with presets through the sliplane_preset_guide tool.
Self-Hosting (Optional)
Only needed if you want to modify the server. For normal usage, use the hosted version above.
uv sync
uv run main.pyThe OAuth integration is configured with environment variables:
SLIPLANE_MCP_BASE_URL=http://localhost:8000
SLIPLANE_AUTH_SERVER_URL=http://localhost:3000Or with Docker:
docker build -t sliplane-mcp .
docker run -p 8000:8000 sliplane-mcpThis server cannot be deployed
Maintenance
Related MCP Connectors
Plan Salesforce deploys, open pull requests and trigger pipelines from your AI client.
Deploy, monitor, and manage your OpenClaw AI assistants via natural language.
- mcpOAuthcom.vibgrate
Query your team's drift, vulnerability, and upgrade data from any AI assistant. OAuth 2.1, 51 tools.
Check if a repo will deploy, plan a deploy to your own cloud, and see status, logs and redeploys.
Related MCP Servers
- AlicenseDqualityFmaintenanceProvides programmatic and CLI tools for managing Coolify deployments, allowing users to control applications, services, databases, and infrastructure through natural language or command line.1038 npm7Good Luck With That Public

Nullplatform API MCPofficial
AlicenseNot gradedqualityDmaintenanceEnables interaction with Nullplatform's API endpoints for managing deployments, scopes, services, and other cloud resources through natural language using the official OpenAPI specification.6 npm1MIT
PlugLayer MCP Serverofficial
AlicenseCqualityBmaintenanceEnables deploying and managing infrastructure via natural language, including project/domain management, compute nodes, image deployment, and CI/CD integration.70MIT- AlicenseAqualityCmaintenanceEnables managing DigitalOcean cloud resources, including Droplets, databases, domains, and more, via natural language.12MIT