Skip to main content
Glama
sliplane

Sliplane MCP Server

by sliplane

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.io

For API key auth:

claude mcp add --transport http \
  -H "Authorization: Bearer yourapikeyhere" \
  sliplane https://mcp.sliplane.io

Codex

codex mcp add sliplane \
  --url https://mcp.sliplane.io \
  --oauth-client-id sliplane-mcp

For API key auth:

export SLIPLANE_API_KEY=yourapikeyhere

codex mcp add sliplane \
  --url https://mcp.sliplane.io \
  --bearer-token-env-var SLIPLANE_API_KEY

Cursor

{
  "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?
No

Then authenticate:

opencode mcp auth

VS 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.io

  • Type: StreamableHTTP

  • OAuth Client ID: sliplane-mcp

  • OAuth scopes: full

  • API 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.py

The OAuth integration is configured with environment variables:

SLIPLANE_MCP_BASE_URL=http://localhost:8000
SLIPLANE_AUTH_SERVER_URL=http://localhost:3000

Or with Docker:

docker build -t sliplane-mcp .
docker run -p 8000:8000 sliplane-mcp

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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