Skip to main content
Glama
abyssbugg

Task Manager

by abyssbugg

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.json
  • Or set the path via env (defaults to ~/Documents/tasks.json if omitted):

TASK_MANAGER_FILE_PATH=/Users/you/Documents/tasks.json bunx @abyssbug/task-manager
  • Using npx is acceptable if Bun is installed (the binary uses a Bun shebang):

npx -y @abyssbug/task-manager --tasks-file ~/Documents/tasks.json

Related 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 list

    • POST /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":{}}'
A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (12mo)
Commit activity

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

View all related MCP servers

Related MCP Connectors

  • Create, validate, edit, export (markdown/svg/png/mermaid), and search JSON Canvas files.

  • Read and write your Fresh Jots notes from Claude, Cursor, and any MCP client.

  • Manage projects, tasks, time tracking, and team collaboration through natural language.

View all MCP Connectors

Latest Blog Posts

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