TaskFlow MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TaskFlow MCPCreate a high priority task to review the project proposal."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TaskFlow MCP — Build Your First Production MCP Server
A hands-on lab for the AI Bridge cohort. You'll build, test, and deploy a real MCP server that any LLM can use — Claude, GPT, Gemini, or a free local model via Ollama. Total cost: $0.
What you'll learn
The three MCP primitives: tools (actions), resources (data), prompts (templates)
How type hints + docstrings become the LLM's instruction manual
The dev → prod transport story: stdio locally, Streamable HTTP in the cloud
Testing MCP servers with an in-memory client (no server process needed)
Deploying to a free public URL on Render
Related MCP server: mcp-task-manager
Prerequisites
Python 3.10+ (3.12 recommended)
uv —
pip install uvOptional (free local LLM): Ollama with a tool-calling model, e.g.
ollama pull qwen3:4b
Part A — Run it locally (5 min)
git clone <repo-url> taskflow-mcp
cd taskflow-mcp
uv sync
uv run taskflow # starts on stdio, waiting for a clientPress Ctrl+C — stdio servers are meant to be launched by a client, which is next.
Part B — Inspect it (the debugging superpower)
npx @modelcontextprotocol/inspector uv run taskflowOpens a web UI. Click through Tools → create_task → Run and watch your Python function execute via the protocol. Checkpoint: you can create and list a task in the Inspector.
Part C — Connect a FREE local LLM
pip install mcp-client-for-ollama
ollmcp # then add server: command = uv, args = run taskflowAsk: "Create a high priority task called 'finish the MCP lab', then show me my task stats."
Checkpoint: the model calls create_task, then reads tasks://stats.
Works identically with Claude Desktop, Cursor, LM Studio — that's the point of MCP.
Part D — Go to production (Streamable HTTP)
TASKFLOW_TRANSPORT=http uv run taskflow
# → serving at http://localhost:8000/mcpOne env var. Same code. Now it's a network service any client can reach by URL.
Part E — Deploy free on Render
Push this repo to your GitHub
On render.com: New → Blueprint → pick your repo (it reads
render.yaml)Deploy → you get
https://<your-app>.onrender.com/mcpAdd that URL to any MCP client. Your server is live on the internet. 🎉
Note: free instances sleep when idle; first request after a nap takes ~30–60s.
Run the tests
uv run pytestProject map
src/taskflow/
├── config.py # env-driven settings (12-factor)
├── db.py # SQLite persistence
├── tools.py # @mcp.tool actions ← start reading here
├── resources.py # tasks:// read-only data
├── prompts.py # user-invoked templates
└── server.py # FastMCP app + transport switchStretch goals
Add a
search_taskstool with keyword matchingAdd a
tasks://overdueresource (you'll need a due_date column)Add bearer-token auth for the HTTP transport
Point two different LLMs at your hosted URL at the same time
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceA task management MCP server that provides tools to create, list, complete, and delete tasks using pluggable storage backends. It enables users to interact with their task lists through natural language using MCP-compatible clients like Claude Desktop.Last updated
- Flicense-qualityDmaintenanceA local task management MCP server that enables users to create, update, and manage tasks through natural language conversations with Claude. It provides nine tools for comprehensive task management including creation, filtering, searching, and daily planning without requiring a separate UI or backend service.Last updated
- Flicense-qualityDmaintenanceA comprehensive task management MCP server built with FastMCP, featuring full CRUD operations, intelligent filtering, and productivity-focused prompts.Last updated1
- Flicense-qualityCmaintenanceA task manager MCP server that demonstrates all three MCP primitives (tools, resources, prompts). Enables users to manage tasks, read task summaries and details, and run structured planning/review prompts through natural language.Last updated
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
MCP server for generating rough-draft project plans from natural-language prompts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AdarshVijay101/taskflow-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server