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
Create an account
Sign up at app.mnogodel.com — it's free and takes 30 seconds.
Create an API key
Go to Settings → API Keys. Create a token with the required scopes.
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 with priorities, statuses, due dates, tags
tasks:read, tasks:writeGroup tasks into projects linked to streams
projects:read, projects:writeStreams — top-level categories (Work, Personal, etc.)
streams:read, streams:writeTime tracking: start/stop sessions linked to tasks
tracker:read, tracker:writeNotes linked to streams, projects, and tasks
notes:read, notes:writeEvents with dates, colors, descriptions
events:read, events:writeHabit tracker: check-ins, streaks, statistics
habits:read, habits:writeFood diary, water, recipes, calorie/macro goals
nutrition:read, nutrition:writeFinance tracking: accounts, categories, transactions
finance:read, finance:writeUser profile information
profile:readFiles 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.
Complete agent instructions: all endpoints, examples, tips
Machine-readable JSON: URLs, modules, scopes, auth methods
Direct links (share with your agent):
Ready to start?
Create an account, get an API key, and connect your agent in 5 minutes.
Create account