steps-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., "@steps-mcpCreate a plan to integrate the payment API"
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.
Steps MCP
Steps MCP is an agent-friendly task planning and execution MCP server with durable SQLite storage and a browser UI for reviewing plans and following progress.

The board makes the execution state visible at a glance while the MCP surface gives agents compact tools, durable resources, and an explicit next safe action.
Run with Docker
docker run -d \
--name steps-mcp \
--restart unless-stopped \
-v steps-mcp-data:/app/data \
-p 3001:3001 \
ghcr.io/dassader/steps-mcp:latestThe /app/data volume stores plans, steps, notes, transitions, attachments, and workflow state.
The latest image is published for linux/amd64 and linux/arm64, so Docker selects the correct platform automatically.
After the container starts:
MCP endpoint:
http://localhost:3001/mcpUser interface:
http://localhost:3001/Health check:
http://localhost:3001/health
Connect an MCP client to the Streamable HTTP endpoint above. Call server.get_started for the built-in workflow guide, then use the returned prompts, tools, and resource URIs to plan and execute work.
Related MCP server: task-manager-mcp
Workflow
Steps MCP keeps planning, review, execution, verification, and blockers explicit:
Create a draft plan and detailed steps.
Review the plan in the browser UI and record explicit approval.
Start the server-selected next step.
Add durable notes and attachments while work progresses.
Move completed implementation through verification, or record an honest blocker.
Tool responses include the current state, relevant identifiers, and the next safe action so an agent does not need the entire state machine in tool descriptions.

Durable work evidence
Every status transition creates an audit note. Agents can also add standalone notes and attach text, binary evidence, or links without changing step status.

Configuration
Variable | Default | Purpose |
|
| HTTP bind address |
|
| Container HTTP port |
|
| Base URL returned in browser review links |
|
| Streamable HTTP MCP path |
|
| Enables stateful MCP sessions |
|
| Returns JSON responses instead of opening SSE streams |
|
| SQLite database path |
| empty | Additional comma-separated browser origins |
Local development
Requires Node.js 20 or newer.
npm ci
npm run typecheck
npm test
npm run build
npm startThe default local database is steps.db. Copy .env.example to .env to customize local settings.
License
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-qualityCmaintenanceA small Model Context Protocol server that exposes a personal task tracker to any MCP-compatible client. Tasks live in a local SQLite database; no cloud, no surprises.MIT
- Flicense-qualityCmaintenanceA task manager MCP server that demonstrates all three MCP primitives (tools, resources, prompts). Enables users to manage tasks, read task summaries and details, and run structured planning/review prompts through natural language.
- Alicense-qualityCmaintenanceA local MCP-style server for managing task records and seeded documents through controlled tool functions, using SQLite and JSON seed data.MIT
- Flicense-qualityCmaintenanceA personal task management MCP server that allows LLM clients to create, read, update, and delete tasks with projects, labels, and comments, using a local SQLite database that can also be accessed via a web UI.
Related MCP Connectors
MCP server for generating rough-draft project plans from natural-language prompts.
Personal assistant MCP server with search, execute, packages, jobs, secrets, and integrations.
Project management MCP for AI agents with safe task reads and writes.
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/dassader/steps-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server