Sliplane 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., "@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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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.10977Good Luck With That Public

Nullplatform API MCPofficial
Alicense-qualityDmaintenanceEnables interaction with Nullplatform's API endpoints for managing deployments, scopes, services, and other cloud resources through natural language using the official OpenAPI specification.111MIT
PlugLayer MCP Serverofficial
AlicenseCqualityBmaintenanceEnables deploying and managing infrastructure via natural language, including project/domain management, compute nodes, image deployment, and CI/CD integration.70MIT- AlicenseBqualityFmaintenanceEnables management of Komodo infrastructure including servers, stacks, deployments, builds, repositories, procedures, and system settings through natural language.541309GPL 3.0
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
Operate your Linux servers from your LLM. Every action runs through an auditable allowlist.
Deploy apps on your cloud. Create environments, configure infrastructure, and monitor jobs.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/sliplane/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server