# Sleekplan MCP Server
The MCP (Model Context Protocol) server provides a standardized interface that allows any compatible AI model or agent to access your Sleekplan workspace data in a simple and secure way.
Connect to the MCP server natively in Claude, Cursor, Windsurf, and other clients. The Sleekplan MCP server has tools available for finding, creating, and updating feedback, changelog entries, surveys, comments, users, and more — with additional functionality on the way.
Sleekplan's MCP server follows the authenticated remote MCP spec, so the server is centrally hosted and managed — there is no local version to install or run. A local/self-hosted version is not available at this time.
# Setup Instructions
# General
The MCP server supports Streamable HTTP transport and uses OAuth 2.1 with dynamic client registration for authentication at the following address:
https://mcp.sleekplan.com/mcp
On first connection, your MCP client will open a browser window where you sign in to your Sleekplan account and select the workspace you want to connect. After authorization, all subsequent requests are authenticated automatically.
# Claude
Claude Desktop
From Claude settings > Connectors, add the Sleekplan connector. Alternatively, add the following to your claude_desktop_config.json:
{
"mcpServers": {
"sleekplan": {
"url": "https://mcp.sleekplan.com/mcp"
}
}
}
# Claude Code
claude mcp add sleekplan --transport streamable-http https://mcp.sleekplan.com/mcp
Then run /mcp once you've opened a Claude Code session to go through the authentication flow.
# Cursor
In Cursor settings, navigate to the MCP tools page and add a new server:
- Name: Sleekplan
- Type: Streamable HTTP
- URL:
https://mcp.sleekplan.com/mcp
# Visual Studio Code
CTRL/CMD P and search for MCP: Add Server, then select HTTP and enter:
https://mcp.sleekplan.com/mcp
Alternatively, add the following to your VS Code MCP configuration:
{
"mcpServers": {
"sleekplan": {
"url": "https://mcp.sleekplan.com/mcp"
}
}
}
# Windsurf
CTRL/CMD , to open Windsurf settings. Scroll to Cascade > MCP servers, select Add Server > Add custom server, and add:
{
"mcpServers": {
"sleekplan": {
"url": "https://mcp.sleekplan.com/mcp"
}
}
}
# Others
Many other tools now support MCP servers. Configure them to use Sleekplan's MCP server with the following address:
https://mcp.sleekplan.com/mcp
If your client does not support Streamable HTTP, you can use the mcp-remote module for backwards compatibility:
- Command:
npx - Arguments:
-y mcp-remote https://mcp.sleekplan.com/mcp
# Available Tools
The MCP server provides the following tools for working with your Sleekplan workspace. All tools and their parameters are automatically discovered by your AI client — just ask in natural language.
Feedback — list_feedback, create_feedback, get_feedback, update_feedback, delete_feedback, get_feedback_stats, get_similar_feedback, merge_feedback, tag_feedback
Comments — list_comments, create_comment, update_comment, delete_comment
Changelog — list_changelog, create_changelog, get_changelog, update_changelog, delete_changelog
Surveys — list_surveys, get_survey, create_survey, update_survey_name, update_survey_questions, get_survey_summary, get_survey_question_feed, list_survey_responses, get_survey_response
Votes — list_votes, get_voters
Users — list_users, get_user, get_user_segment
Topics — list_topics, list_sub_topics
Tags — list_tags, create_tag, delete_tag
Workspace — list_feedback_types, list_feedback_statuses, get_category_template, list_admins, list_segments
# FAQ
Which AI clients are supported? Any MCP-compatible client works with Sleekplan's MCP server, including Claude, Cursor, Windsurf, VS Code, and others.
Can I connect multiple workspaces? Each MCP connection is scoped to a single workspace, selected during authorization. To connect multiple workspaces, add multiple MCP server entries with different names in your client configuration.
What permissions does the MCP server use? The MCP server uses your Sleekplan account permissions. You can perform the same actions through the MCP server as you can through the Sleekplan admin dashboard.
Is my data secure? Yes. The MCP server uses OAuth 2.1 with PKCE for authentication. Your credentials are never shared with the AI client. All communication happens over HTTPS, and sessions are scoped to the workspace you authorized.
Having trouble connecting? Try clearing your cached authentication and reconnecting. If you continue experiencing issues, contact support.