Back to Browse

Ltd MCP Server

by Eshway
Developer ToolsLow Risk10.0MCP RegistryRemote
Free

Server data from the Official MCP Registry

Project management MCP for AI agents with safe task reads and writes.

About

Project management MCP for AI agents with safe task reads and writes.

Remote endpoints: streamable-http: https://api.eshway.com/mcp/

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.

Endpoint verified · Requires authentication · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Connect

Remote Plugin

No local installation needed. Your AI client connects to the remote endpoint directly.

Add this to your MCP configuration to connect:

{
  "mcpServers": {
    "io-github-eshller-ltd-mcp": {
      "url": "https://api.eshway.com/mcp/"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

LTD MCP

Project management MCP for AI agents.

LTD MCP lets AI agents connect to an LTD workspace over MCP and safely operate project work: inspect project health, search tasks, create tasks, update tasks, assign owners, and add comments using scoped API tokens and preview-confirm writes.

Status: early public preview. Read tools are available. Write tools use a two-step preview-confirm safety flow.

Why this exists

Most project management tools were built for humans clicking dashboards. AI agents need safe, structured tools.

LTD MCP is the agent-native interface for LTD, an anti-Jira-style project workspace for teams that want humans and AI agents operating together.

MCP endpoint

https://api.eshway.com/mcp/

Transport: Streamable HTTP / HTTP MCP

Authentication: Bearer token

Authorization: Bearer <LTD_API_TOKEN>

Capabilities

Read tools

  • ltd_list_projects - list projects the token can access
  • ltd_describe_project - describe statuses, custom fields, and members
  • ltd_search_tasks - search/filter tasks
  • ltd_get_task - fetch full task detail
  • ltd_my_tasks - list token owner's open tasks
  • ltd_get_comments - read task comments
  • ltd_project_pulse - project health rollups
  • ltd_analytics_query - analytics aggregations
  • ltd_drilldown_tasks - drill into analytics datapoints

Write tools

  • ltd_create_task - create a task
  • ltd_update_task - update fields on a task
  • ltd_add_comment - add a comment

Write tools are intentionally two-step:

  1. mode="preview" returns the exact proposed change and a short-lived confirm token. Nothing is written.
  2. mode="confirm" with the same arguments plus confirm_token performs the write.

Token scopes

Create an LTD API token from LTD Settings → API tokens.

Recommended scopes:

  • mcp:read for read-only project visibility
  • mcp:write for task creation, updates, assignment, and comments

Keep tokens secret. Revoke and rotate them from LTD settings when needed.

Quickstart

Generic MCP HTTP config

{
  "mcpServers": {
    "ltd": {
      "transport": "http",
      "url": "https://api.eshway.com/mcp/",
      "headers": {
        "Authorization": "Bearer ${LTD_API_TOKEN}"
      }
    }
  }
}

Hermes

mcp add ltd --transport http \
  --url https://api.eshway.com/mcp/ \
  --header "Authorization: Bearer $LTD_API_TOKEN"

Smithery

smithery mcp add https://api.eshway.com/mcp/ --id ltd

Example prompts

Show me all LTD projects I can access.
Give me a project pulse for PS - Mini and list the top risks.
Create a low-priority test task in PS - Mini assigned to Eshu, but show me the preview before confirming.
Find stale tasks assigned to me, group them by status, and suggest next actions.

Safety model

LTD MCP is designed for human-controlled agent operations:

  • Scoped PATs limit access.
  • Read and write scopes are separate.
  • Write actions use preview-confirm.
  • Preview explicitly returns nothing_changed_yet: true.
  • Confirm tokens are short-lived and single-use.
  • Invalid assignees/statuses are rejected before write.

Example write flow

Preview:

{
  "project_id": 168,
  "title": "Test task created by ZERO",
  "description": "Verify LTD MCP task creation.",
  "status": "To Do",
  "assignees": ["Eshu"],
  "priority": "Low",
  "mode": "preview"
}

Confirm:

{
  "project_id": 168,
  "title": "Test task created by ZERO",
  "description": "Verify LTD MCP task creation.",
  "status": "To Do",
  "assignees": ["Eshu"],
  "priority": "Low",
  "mode": "confirm",
  "confirm_token": "<token from preview>"
}

Supported clients

Any MCP client that supports remote HTTP / Streamable HTTP MCP servers should work.

Planned docs:

  • Claude Desktop
  • Cursor
  • Cline
  • Windsurf
  • Hermes / ZERO
  • Smithery

Links

Roadmap

  • Public hosted docs
  • Demo workspace
  • Client-specific setup guides
  • Official MCP Registry listing
  • Smithery listing
  • MCP.so listing
  • Audit log docs
  • OAuth support

License

MIT for documentation and examples in this repository. LTD server implementation and hosted service are owned by Eshway.

Reviews

No reviews yet

Be the first to review this server!