LTD 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., "@LTD MCPGive me a project pulse for PS - Mini and list top risks."
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.
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.
Related MCP server: OpenProject MCP
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 accessltd_describe_project- describe statuses, custom fields, and membersltd_search_tasks- search/filter tasksltd_get_task- fetch full task detailltd_my_tasks- list token owner's open tasksltd_get_comments- read task commentsltd_project_pulse- project health rollupsltd_analytics_query- analytics aggregationsltd_drilldown_tasks- drill into analytics datapoints
Write tools
ltd_create_task- create a taskltd_update_task- update fields on a taskltd_add_comment- add a comment
Write tools are intentionally two-step:
mode="preview"returns the exact proposed change and a short-lived confirm token. Nothing is written.mode="confirm"with the same arguments plusconfirm_tokenperforms the write.
Token scopes
Create an LTD API token from LTD Settings → API tokens.
Recommended scopes:
mcp:readfor read-only project visibilitymcp:writefor 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 ltdExample 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
MCP endpoint: https://api.eshway.com/mcp/
Website: https://eshway.com/
Product: LTD by Eshway
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.
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
- Alicense-qualityBmaintenanceMCP server for task management, project knowledge, workspace trust, runner sandboxes, extension registry, and workflow prompts, enabling AI agents to manage tasks and collaborate locally.5,117Apache 2.0
- AlicenseAqualityAmaintenanceAn MCP server that lets local AI agents read and manage OpenProject project data through structured, guarded tools, with write operations requiring explicit confirmation.5814MIT
- Alicense-qualityBmaintenanceAgent-first project management MCP server that enables AI agents to manage tasks, spaces, lists, boards, subtasks, comments, and automations via natural language, with full audit trail and real-time sync.7,632MIT
- Alicense-qualityBmaintenanceMCP server for the Deckbook task tracker, allowing AI agents to create and manage tasks with project-scoped tokens.MIT
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for Argo RPG Platform — connects AI assistants to campaign data via OAuth2
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/Eshway/ltd-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server