Getting Started with the Sliplane MCP server
Before installing the Sliplane MCP server, you need:
- API Access: You must have access to the Sliplane API (ctrl.sliplane.io)
- API Key: Your personal API key from your Sliplane account
- 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
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
- Open Cursor and go to Cursor Settings
- Navigate to “Tools & Integrations” → “MCP Tools”
- 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