slyplan-mcp
v1.7.6
Published
MCP server for Slyplan — visual project management via Claude
Maintainers
Readme
slyplan-mcp
MCP server for Slyplan — visual and automated project management via Claude.
Lets you manage your projects, tasks, and roadmaps directly from Claude using natural language.
Setup
1. Create a Slyplan account
Sign up at slyplan.com.
2. Add to your Claude config
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"slyplan": {
"command": "npx",
"args": ["-y", "slyplan-mcp"],
"env": {
"SLYPLAN_EMAIL": "[email protected]",
"SLYPLAN_PASSWORD": "your-password"
}
}
}
}Claude Code (.claude/settings.json):
{
"mcpServers": {
"slyplan": {
"command": "npx",
"args": ["-y", "slyplan-mcp"],
"env": {
"SLYPLAN_EMAIL": "[email protected]",
"SLYPLAN_PASSWORD": "your-password"
}
}
}
}3. Start using it
Just talk to Claude:
- "Show me my projects"
- "Create a new project called Mobile App"
- "Add a Frontend category with modules for Auth and Dashboard"
- "Mark the login task as done"
- "What's the progress on the Backend module?"
Available Tools
| Tool | Description |
|------|-------------|
| list_projects | List all your projects |
| set_project | Select which project to work in |
| get_tree | Get the full project tree |
| get_node | Get details about a specific node |
| add_node | Create a new node (project, category, module, component, feature, task) |
| update_node | Update title, description, status, or progress |
| move_node | Move a node to a different parent |
| delete_node | Delete a node and its children |
| search | Search nodes by text, type, or status |
| get_work_mode | See your current work mode items |
| request_completion | Analyze a node and suggest completion |
| whoami | Check which user is authenticated |
How It Works
Slyplan organizes projects as a tree:
Project
Category
Module
Component
Feature
TaskEach node has a status (not_started, in_progress, blocked, done) and progress (0-100%). Progress rolls up automatically from children.
Changes sync in real-time to the Slyplan web app, so your team sees updates instantly.
License
MIT
