lockstep-mcp (Tmmoore286/lockstep-mcp) is an MCP server listed on the M8ven Trust Index. It scores 55 out of 100, grade D. It declares 43 tools. No publisher has claimed this listing.

D
Warning
55/100

lockstep-mcp

Enables multiple AI agents like Claude and Codex to coordinate on the same project through shared tasks, file locks, and a real-time dashboard, preventing conflicts and streamlining collaborative development.

Warning. Serious findings were identified. Review the full report before connecting. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

Tmmoore286

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
🚨
Code appears obfuscated
1 file are unreadable to a human reviewer. Cannot audit what they do.
🚨
Known vulnerabilities in dependencies: 1 critical, 2 high
Affects packages this MCP installs at runtime. Upgrade or remove the affected dependency.
// tools this server exposes43 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

status_get

Get coordinator config and state summary

task_create

Create a task. Complexity determines review requirements: simple=no review, medium=verify on completion, complex/critical=planner approval required. Isolation determines whether implementer works in shared directory or isolated git worktree.

task_claim

Claim a task and set status to in_progress

task_update

Update a task

task_submit_for_review

Submit a completed task for planner review (required for complex/critical tasks, recommended for medium)

task_approve

PLANNER ONLY: Approve a task that is in review status, marking it done

task_request_changes

PLANNER ONLY: Request changes on a task in review, sending it back to in_progress

task_approve_batch

PLANNER ONLY: Approve multiple tasks at once. More efficient than approving one by one.

task_summary

Get task counts by status. Lighter than task_list - use when you just need to know how many tasks are in each state.

task_list

List tasks with optional filters. For active work, defaults to excluding done tasks to reduce response size. Use includeDone=true or status='done' to see completed tasks.

lock_acquire

Acquire a named lock

lock_release

Release a lock

lock_list

List locks with optional filters

note_append

Append a note

note_list

List recent notes

artifact_read

Read an artifact file

artifact_write

Write an artifact file

file_read

Read a file

file_write

Write a file

command_run

Run a shell command

tool_install

Install a tool using a package manager

log_append

Append a log entry

coordination_init

Initialize coordination session. Call this first to set up your role (planner or implementer). Returns guidance based on your role and current project state.

project_context_set

Store project context (description, goals, tech stack, acceptance criteria, tests, implementation plan). Called by planner to define what the project is about.

project_context_get

Get stored project context. Returns the project description, goals, and other context set by the planner.

project_status_set

Set the project status. Use 'stopped' to signal all implementers to stop working.

launch_implementer

Launch a new implementer agent (Claude or Codex) in a new terminal window. The planner uses this to spawn workers. Set isolation='worktree' to give the implementer its own git worktree for isolated changes.

implementer_list

List all registered implementers and their status.

implementer_reset

Reset all implementers to 'stopped' status. Use this when starting a fresh session or when implementers are stale/not actually running.

session_reset

PLANNER ONLY: Reset the coordination session for a fresh start. Clears all tasks, locks, notes, and archives discussions. Use this when starting a new project or when data from previous sessions is cluttering the dashboard.

dashboard_open

Open the lockstep dashboard in a browser. Call this to monitor progress visually.

discussion_start

Start a new discussion thread. Use this when you need input from other agents or want to discuss an architectural/implementation decision.

discussion_reply

Reply to an existing discussion thread.

discussion_resolve

Resolve a discussion with a final decision. Creates an auditable record of the decision.

discussion_get

Get a discussion thread with all its messages.

discussion_list

List discussions. Use this to check for discussions waiting on you.

discussion_inbox

Check for discussions waiting on you. Call this between tasks to see if anyone needs your input.

discussion_archive

Archive a resolved discussion. Archived discussions can be deleted later.

discussion_cleanup

Archive old resolved discussions and optionally delete old archived ones. Use for maintenance.

worktree_status

Get the status of a worktree including commits ahead/behind main, modified files, and untracked files. Use this to check an implementer's progress before merging.

worktree_merge

Merge an implementer's worktree changes back to main. This should be called after a task is approved. If there are conflicts, returns conflict information for manual resolution.

worktree_list

List all active lockstep worktrees in the project.

worktree_cleanup

Clean up orphaned worktrees that no longer have active implementers. Call this during maintenance.

// known CVEs in dependencies1 critical2 high1 low

Disclosed vulnerabilities in this server's declared npm dependencies (via OSV). Whether each is reachable depends on the installed versions.

criticalvitest@4.0.17GHSA-5xrq-8626-4rwp

When Vitest UI server is listening, arbitrary file can be read and executed

high@modelcontextprotocol/sdk@1.25.2GHSA-345p-7cg4-v4c7

@modelcontextprotocol/sdk has cross-client data leak via shared server/transport instance reuse

highws@8.19.0GHSA-96hv-2xvq-fx4p

ws: Memory exhaustion DoS from tiny fragments and data chunks

ws: Uninitialized memory disclosure

Depend on this server? Get alerted when its CVEs change.Watch this server free →
// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
configCOORD_COMMAND_ALLOW
configCOORD_COMMAND_MODE
configCOORD_DATA_DIR
configCOORD_DB_PATH
configCOORD_LOG_DIR
configCOORD_MODE
configCOORD_ROOTS
configCOORD_SERVER_NAME
configCOORD_SERVER_VERSION
configCOORD_STORAGE
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

43/43 tools missing one or more hints — status_get (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); task_create (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); task_claim (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +40 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Tool test coverage

Only 10/43 tools referenced in tests (23%)

Write tests that reference each tool by name so every tool has at least one test.

Shell command execution

40 calls in production code run through a shell (src/server.ts:97, src/dashboard.ts:37, src/worktree.ts:39)

Prefer library functions over shell-outs. If you must shell out, ensure all inputs are properly escaped.

Readable source code

1 file are minified or bundled, which is usually build output rather than concealment

Ship unminified, readable source.

Production dependencies are patched

0 critical, 2 high severity in production deps — @modelcontextprotocol/sdk@1.25.2 (high), ws@8.19.0 (high)

Run npm audit fix, or upgrade the affected packages to a non-vulnerable version.

Dev dependencies

1 critical/high in dev-only deps (does not ship to users)

Upgrade dev dependencies when convenient.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 7 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/tmmoore286/lockstep-mcp?variant=verified)](https://m8ven.ai/mcp/tmmoore286/lockstep-mcp)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 5a2936e56b299044e76c93f3700ba3ffb9498c53
code hash: 7a7514e427dcc6da8f01d0c47c6187dec13a160f0833b1fed92b7ec3c270dbee
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client