Conatus MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Conatus MCP Serverlist my open tasks for today"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Conatus MCP Server
Connect AI assistants to a self-hosted Conatus task manager through the Model Context Protocol.
The server exposes focused tools for projects, sections, tasks, labels, comments, and reminders. It talks to Conatus through its versioned HTTP API, never accesses the database directly, and intentionally provides no permanent-delete tool.
How it fits together
Codex, ChatGPT, Claude, or another MCP client
│
MCP (stdio or HTTP)
│
Conatus MCP server
│
Conatus /api/v1 + API token
│
Your Conatus instanceEvery installation points the MCP server at the user's own Conatus address. That address can be local (http://localhost:3000), on a private network (http://192.168.1.50:3000), or hosted (https://tasks.example.com).
Related MCP server: Google Tasks MCP Server
Requirements
Node.js 20 or newer
A reachable Conatus installation with the
/api/v1APIA scoped token created in Conatus → Settings → API tokens
Quick start: local MCP process
Local stdio mode is the recommended setup. The AI client starts the MCP process when needed; Conatus itself may be running locally or remotely.
The npm package has not been released yet. Until the first release, build this repository locally:
git clone https://github.com/nojusmorkunas/conatus-mcp.git
cd conatus-mcp
npm ci
npm run buildThen register it with Codex, replacing the URL and token:
codex mcp add conatus \
--env TASKS_BASE_URL=https://tasks.example.com \
--env TASKS_API_TOKEN=tdm_replace_me \
-- node /absolute/path/to/conatus-mcp/dist/stdio.jsRestart Codex and verify the connection:
codex mcp listAfter the package is published to npm, the command becomes:
codex mcp add conatus \
--env TASKS_BASE_URL=https://tasks.example.com \
--env TASKS_API_TOKEN=tdm_replace_me \
-- npx -y conatus-mcpFor clients that use JSON configuration:
{
"mcpServers": {
"conatus": {
"command": "npx",
"args": ["-y", "conatus-mcp"],
"env": {
"TASKS_BASE_URL": "https://tasks.example.com",
"TASKS_API_TOKEN": "tdm_replace_me"
}
}
}
}Do not append /api/v1 to TASKS_BASE_URL; the MCP server adds the API path itself.
Hosted MCP endpoint
Use Streamable HTTP mode when clients need to connect to a shared URL such as https://mcp.example.com/mcp. The gateway keeps the Conatus API token server-side and gives each AI client a separate OAuth session.
TASKS_BASE_URL=https://tasks.example.com \
TASKS_API_TOKEN=tdm_replace_me \
MCP_HOST=0.0.0.0 \
MCP_PORT=3001 \
MCP_PUBLIC_URL=https://mcp.example.com/mcp \
MCP_OAUTH_PASSWORD='use-a-long-separate-approval-password' \
MCP_OAUTH_STORE_PATH=./data/oauth-store.json \
MCP_ALLOWED_ORIGINS=https://your-ai-host.example \
npm run start:httpGive clients only https://mcp.example.com/mcp. Compatible clients discover the OAuth endpoints, dynamically register, open the browser approval page, and complete an authorization-code flow with S256 PKCE. Enter MCP_OAUTH_PASSWORD on the approval page.
Production deployments must put TLS and a reverse proxy in front of port 3001. MCP_PUBLIC_URL must be the exact public HTTPS endpoint ending in /mcp. Only the reverse proxy should expose the MCP port.
Docker
docker build -t conatus-mcp .
docker run --rm -p 127.0.0.1:3001:3001 \
-v conatus-mcp-oauth:/data \
-e TASKS_BASE_URL=https://tasks.example.com \
-e TASKS_API_TOKEN=tdm_replace_me \
-e MCP_HOST=0.0.0.0 \
-e MCP_PUBLIC_URL=https://mcp.example.com/mcp \
-e MCP_OAUTH_PASSWORD='use-a-long-separate-approval-password' \
-e MCP_OAUTH_STORE_PATH=/data/oauth-store.json \
conatus-mcpStatic bearer fallback
If a client cannot use OAuth, omit MCP_PUBLIC_URL and MCP_OAUTH_PASSWORD, then configure a long random MCP_BEARER_TOKEN. Send that value as a bearer token when connecting to /mcp.
Binding to a non-loopback address without complete OAuth configuration or MCP_BEARER_TOKEN is rejected.
Configuration
Variable | Required | Default | Purpose |
| Always | — | Conatus origin, without |
| Always | — | Scoped |
| No |
| Upstream API timeout |
| HTTP only |
| HTTP bind address |
| HTTP only |
| HTTP port |
| No | Conatus origin | Comma-separated browser origins |
| OAuth mode | — | Exact public HTTPS MCP URL ending in |
| OAuth mode | — | Separate approval password of at least 16 bytes |
| No |
| Persistent OAuth registrations and token hashes |
| Bearer mode | — | Static credential used by HTTP clients |
Available tools
Workspace:
get_workspace_contextProjects:
list_projects,get_project,create_project,update_projectSections:
create_section,update_sectionTasks:
list_tasks,get_task,create_task,quick_add_task,update_task,move_task,complete_task,reopen_task,set_task_labelsLabels:
list_labels,create_labelCollaboration:
add_commentScheduling:
set_reminder
Create operations use idempotency keys so retries do not create duplicates. Tool responses return task and comment content as structured user data, not agent instructions.
Available resources
taskapp://workspacetaskapp://views/todaytaskapp://views/upcomingtaskapp://projects/{id}taskapp://tasks/{id}
Security
Treat
TASKS_API_TOKEN,MCP_OAUTH_PASSWORD, andMCP_BEARER_TOKENas secrets.Never commit secrets, paste them into prompts, or include them in tool arguments.
Grant the Conatus API token only the scopes the client needs.
Use HTTPS for every non-local Conatus or MCP endpoint.
Revoke or rotate the Conatus API token if the gateway is compromised.
To revoke every OAuth client, stop the gateway, remove its OAuth store, and restart it.
OAuth access tokens last one hour and rotating refresh tokens last 30 days. Registrations and token hashes are stored with mode 0600; raw OAuth tokens and the approval password are not stored. Run one MCP replica per JSON store file.
Development
npm ci
npm test
npm run lint
npm run build
npm pack --dry-runRun the stdio server during development:
TASKS_BASE_URL=http://localhost:3000 \
TASKS_API_TOKEN=tdm_replace_me \
npm run devTest the built server with MCP Inspector:
TASKS_BASE_URL=http://localhost:3000 \
TASKS_API_TOKEN=tdm_replace_me \
npx @modelcontextprotocol/inspector node dist/stdio.jsPublishing
Publish the self-contained package to npm as conatus-mcp:
npm publishPublishing automatically runs the test, lint, and build checks through prepublishOnly.
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceProvides Todoist task management capabilities to AI assistants through the Model Context Protocol. Enables users to interact with their Todoist projects and tasks directly through Claude Desktop using natural language commands.33267MIT
- Alicense-qualityDmaintenanceIntegrates with Google Tasks to enable searching, listing, creating, and managing tasks through the Model Context Protocol. It allows users to perform CRUD operations on tasks and clear completed items using the Google Tasks API.MIT
- Alicense-qualityDmaintenanceEnables AI assistants to manage Google Tasks (list, create, complete, delete tasks) through the Model Context Protocol.2MIT
- Alicense-qualityDmaintenanceA Model Context Protocol server that enables AI assistants to manage Google Tasks, including creating, updating, deleting, and searching tasks and task lists via OAuth2 authentication.281Apache 2.0
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Project management MCP for AI agents with safe task reads and writes.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nojusmorkunas/conatus-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server