FastMCP Server
Click on "Deploy 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., "@FastMCP ServerCreate a task to review the quarterly report"
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.
FastMCP Server
Python FastMCP (Model Context Protocol) server with Bearer Token authentication
How to Run
Run Locally
pip install -r requirements.txt
python server.pyRun with Docker
docker build -t fastmcp .
docker run -p 8000:8000 -e FASTMCP_AUTH_TOKEN=your-secret-token fastmcpRelated MCP server: MCP Server Node
Deployment
Cloudtype
Select Template:
FastMCP
Deploy
Python 3.12
Environment Variables
FASTMCP_AUTH_TOKEN: Set the token used for authentication (token used during authentication)Start Command
uvicorn server:app --host 0.0.0.0 --port 8000
Connection Information
MCP connection address - https:///mcp
Updates After committing and pushing code, deploy via the
Deploybutton in theSettingstab.
YouTube Guide
Deployment Automation
Authentication
Uses Bearer Token authentication:
Environment Variable:
FASTMCP_AUTH_TOKENHeader:
Authorization: Bearer your-token
Supported Tools
create_task: Create a task
complete_task: Complete a task
list_tasks: Retrieve the list of tasks
Environment Variables
FASTMCP_AUTH_TOKEN: Bearer Token (Required)
FASTMCP_HOST: Server host (Optional/Default: 0.0.0.0)
FASTMCP_PORT: Server port (Optional/Default: 8000)
How to Use
Porter AI
Troubleshooting
License
MIT License
This server cannot be deployed
Maintenance
Related MCP Connectors
Local-first task manager: create, edit, and complete tasks, projects, and checklists via MCP.
- mcpOAuthnet.todoist
Official Todoist MCP server for AI assistants to manage tasks, projects, and workflows.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA simple MCP server for task management with Bearer token authentication, supporting create, complete, and list tasks operations.7MIT
- AlicenseNot gradedqualityDmaintenanceA Node.js MCP server example with user management, task management, and calculator tools. Supports authentication via bearer token and can be deployed locally or via Docker.7 npmMIT
- AlicenseNot gradedqualityCmaintenanceA Node.js MCP server with user, task, and calculator tools. Supports Bearer token authentication and Docker/Cloudtype deployment.7 npmMIT
- FlicenseBqualityCmaintenanceA task manager MCP server that enables creating, reading, updating, and deleting tasks persisted in a local JSON file.4-