Task Manager
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., "@Task Manageradd a task to review the quarterly report by Friday"
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.
Task Manager (@abyssbug/task-manager)
A small Model Context Protocol (MCP) server that manages a simple tasks.json file.
Quick Start
Run with Bun (recommended):
bunx @abyssbug/task-manager --tasks-file ~/Documents/tasks.jsonOr set the path via env (defaults to
~/Documents/tasks.jsonif omitted):
TASK_MANAGER_FILE_PATH=/Users/you/Documents/tasks.json bunx @abyssbug/task-managerUsing npx is acceptable if Bun is installed (the binary uses a Bun shebang):
npx -y @abyssbug/task-manager --tasks-file ~/Documents/tasks.jsonRelated MCP server: Task Manager MCP Server
MCP Config Examples
For generic MCP clients (~/.mcp/servers.json):
{
"mcpServers": {
"task-manager": {
"command": "bunx",
"args": ["@abyssbug/task-manager", "--tasks-file", "/Users/you/Documents/tasks.json"]
}
}
}For Cursor (~/.cursor/mcp.json):
{
"task-manager": {
"command": "bunx",
"args": ["@abyssbug/task-manager", "--tasks-file", "/Users/you/Documents/tasks.json"],
"working_directory": "/Users/you/Documents"
}
}HTTP Mode (for Smithery or custom hosting)
The server can run over HTTP when
MCP_TRANSPORT=http.Endpoints:
GET /health→{ ok: true }GET /tools→ JSON tool listPOST /call→ Body:{ "name": "tool_name", "arguments": { ... } }
Run locally in HTTP mode with Bun:
MCP_TRANSPORT=http PORT=3000 bun run dev
# then in another terminal
curl http://localhost:3000/health
curl http://localhost:3000/tools
curl -X POST http://localhost:3000/call -H 'content-type: application/json' -d '{"name":"list_requests","arguments":{}}'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 Connectors
Local-first task manager: create, edit, and complete tasks, projects, and checklists via MCP.
Manage tasks, Focus Zone, notes, projects, and task history from compatible AI assistants.
Schedule and manage recurring or one-shot tasks
Manage files and folders directly from your workspace. Read and write files, list directories, cre…
Related MCP Servers
- AlicenseBqualityAmaintenanceEnables managing a minimal task backlog with operations to create, list, update, and retrieve tasks with different statuses (open, in progress, blocked, done, cancelled). Tasks are stored in a local JSON file with atomic writes.28815MIT
- FlicenseNot gradedqualityDmaintenanceEnables task management through natural language with full CRUD operations including add, list, update, complete, and delete tasks with JSON persistence.
- FlicenseNot gradedqualityDmaintenanceManages TODO tasks with operations like add, list, complete, update, and delete, stored in a JSON file.
- FlicenseBqualityCmaintenanceEnables task management via MCP tools for creating, listing, updating, completing, and deleting tasks with JSON file storage.6
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/abyssbugg/task-manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server