TaskUp MCP Server
A centralized workspace orchestration server that enables natural language task management across Notion, Google Calendar, and Telegram. It allows users to analyze intent, create database tasks, schedule calendar events, and send instant notifications.
README
TaskUp MCP Server 
A production-grade Model Context Protocol (MCP) server for centralized workspace orchestration. This server provides tools to analyze user intent and perform actions across Notion, Google Calendar, and Telegram.
🚀 Multi-Client Configuration Guide
Connect TaskUp MCP to your favorite AI tools using the configurations below.
1. Claude Desktop (Universal Compatibility Fix)
Claude Desktop sometimes requires a command field and may fail with a direct SSE URL. Use this configuration to connect via the built-in compatibility proxy:
{
"mcpServers": {
"taskup": {
"command": "bun",
"args": [
"run",
"/Users/rahulpandey187/Documents/future-products/Alumnx/MCP/taskup-mcp/src/server/proxy.ts"
],
"env": {
"REMOTE_URL": "https://personal-execution-mcp-vfh76wyjna-uc.a.run.app/sse",
"ARCADE_TOKEN": "YOUR_ARCADE_TOKEN"
}
}
}
}
[!IMPORTANT] Replace the path in
argswith the absolute path to your localproxy.tsfile.
2. Cursor / Windsurf / ChatGPT
These clients support direct SSE URLs natively:
- URL:
https://personal-execution-mcp-vfh76wyjna-uc.a.run.app/sse - Type: SSE
3. Zed Editor
Add this to your settings.json:
{
"context_servers": [
{
"name": "taskup",
"url": "https://personal-execution-mcp-vfh76wyjna-uc.a.run.app/sse"
}
]
}
Architecture
- Transport: SSE (Server-Sent Events)
- Security: OAuth 2.1 (Arcade Bearer Auth)
- Intelligence: LangGraph + Hugging Face (Mistral-7B)
- Integrations: Notion, Google Calendar, Telegram
Production Readiness
- Multi-Session Safe: Supports concurrent sessions via sessionId routing.
- Stateless: No session state stored on server; fully delegated to OAuth tokens.
- Schema-Driven: Strict Zod validation for all inputs and outputs.
- Spec-Compliant: Follows the 2025-11-25 MCP specification.
- Observability: Structured JSON logging using
pino. - Health Checks: Endpoint available at
/health.
How to Test Locally
- Configure
.envusing.env.example. - Run the server:
bun run src/server/index.ts. - Connect using an MCP client to
http://localhost:3000/sse. - Verify health:
curl http://localhost:3000/health.
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.