Skip to content

Getting Started with the Sliplane MCP server

Before installing the Sliplane MCP server, you need:

  1. API Access: You must have access to the Sliplane API (ctrl.sliplane.io)
  2. API Key: Your personal API key from your Sliplane account
  3. Organization ID: Your organization identifier from your Sliplane account

You can find your API key and organization ID in your Sliplane team settings.

Installation

The Sliplane MCP server mirrors the functionality available in our public API. Choose your preferred installation method below:

Claude Code

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

Replace yourapikeyhere with your actual API key and yourorganizationidhere with your organization ID.

Cursor

  1. Open Cursor and go to Cursor Settings
  2. Navigate to “Tools & Integrations” → “MCP Tools”
  3. Add a new server with the following configuration:
{
"mcpServers": {
"sliplane": {
"url": "https://mcp.sliplane.io/sse",
"type": "sse",
"headers": {
"Authorization": "Bearer yourapikeyhere",
"X-Organization-Id": "yourorganizationidhere"
}
}
}
}

Visual Studio Code

In your repository, create a file called .vscode/mcp.json with the following content:

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

Others

The configuration format is different for each tool, the setting should stay the same:

URL: https://mcp.sliplane.io/sse

TYPE: sse

HEADERS: Authorization: Bearer yourapikeyhere X-Organization-Id: yourorganizationidhere

If you need any help configuring a specific tool, please refer to the documentation for that tool or contact us!

Configuration

After installation, the MCP server will be available with the same functionality as the Sliplane public API. You can:

  • Manage your deployments
  • Access project information
  • Monitor application status
  • Execute deployment operations