This MCP server allows you to integrate Claude Desktop with the Super Productivity app, enabling AI-powered task management. The server bridges the gap between these applications using the Model Context Protocol (MCP), giving Claude the ability to create, update, and manage your tasks directly within Super Productivity.
You can set up the SP-MCP server either automatically or manually.
For Windows users:
setup.bat
For Linux/Mac users (untested):
chmod +x setup.sh && ./setup.sh
The setup scripts will preserve any existing MCP servers in your Claude Desktop configuration.
Install required Python dependencies:
pip install mcp
Set up the MCP server:
Copy the mcp_server.py
file to your data directory:
%APPDATA%\super-productivity-mcp\
~/.local/share/super-productivity-mcp/
~/Library/Application Support/super-productivity-mcp/
Configure Claude Desktop:
Edit Claude's configuration file and add the following to mcpServers
section:
"super-productivity": {
"command": "python3",
"args": ["/path/to/mcp_server.py"]
}
Install the Super Productivity plugin:
plugin.js
file or the provided plugin.zip
Restart Claude Desktop and Super Productivity
After installation, you can interact with Super Productivity through Claude using natural language commands.
You can create tasks with tags and projects using hashtags and plus signs:
"Create a task to review the quarterly budget #finance +work"
Query and manage your tasks with commands like:
"Show me all my tasks"
"Mark the budget review task as complete"
"Update the task 'Meeting prep' with notes about the agenda"
Manage your projects and tags:
"Create a new project called 'Website Redesign'"
"Show me all projects"
"Get all tags"
The SP-MCP provides a dashboard accessible from the menu. It displays:
nodeExecution
permissionsmcp_server.log
file in the data directory for errorsTo add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "super-productivity" '{"command":"python3","args":["/path/to/mcp_server.py"]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"super-productivity": {
"command": "python3",
"args": [
"/path/to/mcp_server.py"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"super-productivity": {
"command": "python3",
"args": [
"/path/to/mcp_server.py"
]
}
}
}
3. Restart Claude Desktop for the changes to take effect