Mursa MCP
Enables Claude Code, Claude Desktop, Cursor, or any MCP-compatible client to interact with Mursa tasks, calendar, goals, notes, habits, projects, and Gmail via natural language.
README
Mursa MCP
Connect Claude Code, Claude Desktop, Cursor, or any MCP-compatible client to your Mursa tasks, calendar, goals, notes, habits, projects, and Gmail.
š Full guide with screenshots: https://mursa.me/mcp
60-second install
1. Get an API key
- Open dashboard.mursa.me and sign in.
- Go to Settings ā API keys.
- Click New key ā pick a label, expiry, and scopes ā Create.
- Copy the key (starts with
mursa_mcp_ā¦). You'll only see it once.
2. Add to your client
Claude Code (~/.claude.json)
{
"mcpServers": {
"mursa": {
"command": "npx",
"args": ["-y", "mursa-mcp"],
"env": { "MURSA_API_KEY": "mursa_mcp_ā¦" }
}
}
}
Restart Claude Code, run /mcp to confirm, call whoami to verify.
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%/Claude/claude_desktop_config.json (Windows) with the same block,
then restart the app.
Cursor
Settings ā MCP ā Add new MCP server, same JSON block.
3. That's it
Your agent now has access to whatever scopes your key has.
Tools (28)
| Group | Tools | Scope |
|---|---|---|
| Meta | whoami |
(any) |
| Tasks (read) | list_inbox, list_myday, list_schedule, search_tasks |
tasks:read |
| Tasks (write) | create_task, update_task, complete_task, defer_task, schedule_task |
tasks:write |
| Calendar | list_calendar, create_calendar_event |
calendar:* |
| Goals | list_goals, create_goal, update_goal, delete_goal |
goals:* |
| Notes | list_notes, search_notes, create_note, update_note |
notes:* |
| Habits | list_habits |
habits:read |
| Projects | list_projects |
projects:read |
list_emails, get_email, get_attachment, search_emails |
email:read |
|
send_email, reply_email |
email:send |
* as a scope grants everything.
Security
- API keys are sha256-hashed at rest ā the raw value is never stored.
- Per-key scopes + expiry. Revoke any key instantly from the dashboard.
- Per-action rate limits (60/min reads, 30/min writes, 5/min email send).
- Every call audit-logged for 90 days (action, status, latency, IP ā no payload).
- Email attachments capped at 3 MB each / 10 MB total per email.
- All traffic goes through
mursa.me/api/mcp; the Supabase function is gated by a shared proxy secret so direct hits return 403.
Run from source (advanced)
git clone https://github.com/Murali1889/Prod-Mursa.git
cd Prod-Mursa/mcp-servers/mursa
npm install
echo 'MURSA_API_KEY=mursa_mcp_ā¦' > .env
Then point your client at the absolute path:
{
"mcpServers": {
"mursa": {
"command": "node",
"args": ["/absolute/path/to/mcp-servers/mursa/server.js"]
}
}
}
Override the endpoint for preview deployments or local dev:
MURSA_API_URL=https://mursa-preview.vercel.app/api/mcp
(Default is https://mursa.me/api/mcp.)
Troubleshooting
| Symptom | Fix |
|---|---|
Invalid, expired, or revoked API key |
Mint a fresh key in the dashboard, swap MURSA_API_KEY, restart your client. |
This API key is missing the required scope: ⦠|
Your key wasn't granted that scope at mint time. Revoke and mint a new one with the scope checked. |
Gmail is not connected. Connect Gmail in Mursa Settings first. |
Connect Gmail from the Mursa app first. |
Rate limit exceeded (5/min for send_email) |
Slow down ā strict throttle on outbound mail. |
For server-side deployment (running your own Mursa instance), see DEPLOY.md.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.