lst.so mcp

Created By
andresmax2 months ago
Task tracker for AI agents. Manage tasks, subtasks, tags, and activity logs from Claude Code, Cursor, or any MCP client.
Overview

lst-mcp

1.0.3 • Public • Published

lst-mcp

MCP server for lst.so — the task tracker where you and your AI agents share one list.

Manage tasks, subtasks, tags, and activity logs from Claude Code, Cursor, ChatGPT, or any MCP-compatible client.

Setup

  1. Get your API key at lst.so/settings
  2. Add to your MCP config:
{
  "mcpServers": {
    "lst": {
      "command": "npx",
      "args": ["-y", "lst-mcp"],
      "env": {
        "LST_API_KEY": "your-api-key"
      }
    }
  }
}

Config file locations

ClientPath
Claude Code .claude/settings.json or ~/.claude/settings.json
Claude Desktop~/Library/Application Support/Claude/claude_desktop_config.json
CursorCursor Settings > MCP

Tools

Tasks

  • list_tasks — List tasks. Filter by status (open/done), tag, agent, or due (today/overdue/upcoming)
  • get_task — Get a task with its subtasks and activity log
  • create_task — Create a task with priority, agent, due date, tags, notes, and recurrence
  • update_task — Update a task. Use {done: true} to mark complete
  • delete_task — Delete a task permanently

Subtasks

  • create_subtask — Add a subtask to a task
  • update_subtask — Update or check off a subtask
  • delete_subtask — Delete a subtask

Activity Log

  • add_log_entry — Log progress on a task. Log as you work, not just when done.

Tags

  • list_tags — List all tags
  • create_tag — Create a tag with optional color preset
  • delete_tag — Delete a tag

Example usage

Once connected, your agent can manage tasks naturally:

"Create a task to review the PR, tag it 'code-review', assign to claude-code, due today"

"What's on my plate? Show open tasks due today"

"Mark task 42 as done and log 'Deployed to production'"

Environment variables

VariableRequiredDescription
LST_API_KEYYesYour lst.so API key from Settings > Agents
LST_API_URLNoCustom API URL (defaults to https://lst.so/api/v1)

License

MIT

Server Config

{
  "mcpServers": {
    "lst": {
      "command": "npx",
      "args": [
        "-y",
        "lst-mcp"
      ],
      "env": {
        "LST_API_KEY": "<YOUR_API_KEY>"
      }
    }
  }
}
Project Info
Created At
2 months ago
Updated At
2 months ago
Author Name
andresmax
Star
-
Language
-
License
-
Category

Recommend Servers

View All
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

13 hours ago
Docwand

13 hours ago