This MCP server provides task management functionality with Obsidian integration through the Model Context Protocol (MCP). It allows you to create, organize, and prioritize tasks while storing all data locally in a SQLite database.
uv
:# Create and activate the virtual environment
uv venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
uv pip install -r requirements.txt
The DeltaTask MCP server integrates with Claude for Desktop:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"deltatask": {
"command": "uv",
"args": [
"--directory",
"/ABSOLUTE/PATH/TO/DeltaTask",
"run",
"server.py"
]
}
}
}
If you encounter issues, you may need to specify the full path to the uv
executable in the command
field. Find this by running:
which uv
where uv
The DeltaTask MCP server exposes several operations through its API:
get_task_by_id
: Retrieve a specific tasksearch_tasks
: Find tasks matching specific criteriacreate_task
: Add a new task to the systemupdate_task
: Modify existing task propertiesdelete_task
: Remove a taskfinish_task
: Mark a task as completedget_subtasks
: View child tasks for a parent taskcreate_subtasks
: Split a task into multiple componentsget_all_tags
: List all available tagslist_tasks
: Get all tasks in the systemsync_tasks
: Synchronize tasks between Obsidian markdown files and the SQLite databaseget_statistics
: View metrics about your task collectionTasks in DeltaTask include:
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 > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
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 explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.