TaskNest ships a native MCP (Model Context Protocol) server — not a bolt-on. Your agent can create projects, plan sprints, file and update tasks, search your wiki, and run automations through 47 first-class tools, with the same permissions as your account.
tasknest.in and copy your token from Settings → API.tools/list + tools/call.# JSON-RPC 2.0 over HTTPS — list the available tools curl -X POST https://tasknest-production-3d3d.up.railway.app/api/mcp \ -H "Authorization: Bearer <your-token>" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' # Call a tool — e.g. create a task curl -X POST https://tasknest-production-3d3d.up.railway.app/api/mcp \ -H "Authorization: Bearer <your-token>" \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":2,"method":"tools/call", "params":{"name":"tasks.create", "arguments":{"projectId":"<id>","title":"Fix login bug","priority":"High"}}}'
A sample of the 47 tools (grouped by domain):
tools/list.
The same surface is available as a REST public API (personal API keys with read/write scopes — Settings → API), a GraphQL endpoint at /api/graphql, and HMAC-signed outbound webhooks for task and project lifecycle events. Inbound, a Zapier/Make-style webhook can create tasks from any tool.