For developers & agents

Connect your agent to Mnogodel

REST API and MCP server for integrating with AI agents, bots, and external apps. Manage all platform modules programmatically.

Get started in 3 steps

1

Create an account

Sign up at app.mnogodel.com — it's free and takes 30 seconds.

2

Create an API key

Go to Settings → API Keys. Create a token with the required scopes.

3

Connect

Use the REST API directly or connect the MCP server for your agent.

Integration methods

MCP Server

For Claude, Cursor, and other MCP-compatible agents

Model Context Protocol is the standard way to connect AI agents to external services. Add the configuration below to your agent settings:

{
  "mcpServers": {
    "mnogodel": {
      "url": "https://app.mnogodel.com/mcp",
      "headers": {
        "Authorization": "Bearer mnd_YOUR_TOKEN"
      }
    }
  }
}

Replace mnd_YOUR_TOKEN with your personal token from settings.

REST API

For any application, bot, or script

Full-featured REST API with Bearer token auth. Complete documentation is available in the interactive Swagger UI.

curl -X GET "https://mnogodel.com/api/v1/tasks" \
  -H "Authorization: Bearer mnd_YOUR_TOKEN" \
  -H "Content-Type: application/json"

Available modules

Tasks

Tasks with priorities, statuses, due dates, tags

tasks:read, tasks:write
Projects

Group tasks into projects linked to streams

projects:read, projects:write
Streams

Streams — top-level categories (Work, Personal, etc.)

streams:read, streams:write
Time Tracker

Time tracking: start/stop sessions linked to tasks

tracker:read, tracker:write
Notes

Notes linked to streams, projects, and tasks

notes:read, notes:write
Calendar

Events with dates, colors, descriptions

events:read, events:write
Habits

Habit tracker: check-ins, streaks, statistics

habits:read, habits:write
Nutrition

Food diary, water, recipes, calorie/macro goals

nutrition:read, nutrition:write
Finance

Finance tracking: accounts, categories, transactions

finance:read, finance:write
Profile

User profile information

profile:read

Files for agents

Download a ready-made skill file or machine-readable config. Share the file or link with your agent — it will figure out the rest.

Direct links (share with your agent):

Skill: https://mnogodel.com/integrate/mnogodel-skill.md
Config: https://mnogodel.com/integrate/mnogodel-config.json
OpenAPI: https://mnogodel.com/api/v1/docs-json
MCP: https://app.mnogodel.com/mcp

Ready to start?

Create an account, get an API key, and connect your agent in 5 minutes.

Create account