Skip to content

sliplane/mcp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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

Installation

The server is hosted at https://mcp.sliplane.io - no self-hosting required for normal usage.

Claude Code

claude mcp add sliplane https://mcp.sliplane.io \
    -t sse \
    -H "Authorization: Bearer yourapikeyhere" \
    -H "X-Organization-Id: yourorganizationidhere"

Cursor

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"
      }
    }
  }
}

VS Code

Create .vscode/mcp.json in your repository:

{
  "servers": {
    "sliplane": {
      "type": "sse",
      "url": "https://mcp.sliplane.io",
      "headers": {
        "Authorization": "Bearer yourapikeyhere",
        "X-Organization-Id": "yourorganizationidhere"
      }
    }
  }
}

Other Tools

  • URL: https://mcp.sliplane.io
  • Type: StreamableHTTP
  • Headers:
    • Authorization: Bearer yourapikeyhere
    • X-Organization-Id: yourorganizationidhere

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

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

Or with Docker:

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

About

MCP server for the Sliplane API

Resources

Stars

Watchers

Forks

Packages

No packages published