AGENTS.md Generator MCP Server

Analyzes codebases with tree-sitter and generates AGENTS.md files for AI coding agents. Its 3 documented tools cluster into generate, scan, read & search. It runs locally over stdio via the published package.

People connecting coding agent tools to Claude, Cursor, VS Code, or another MCP client. The project is written in Python.

VERIFIED ACTIVE

LAST COMMIT 2026-08-11 · ★ 6 · #95 OF 194 MAINTAINED CODING AGENT · VERIFIED 2026-08-25

MIT · Python servers · how we verify → /methodology

01 · Install AGENTS.md Generator

Claude Code

claude mcp add nushey-agents-md-generator -- uvx agents-md-generator

Claude Desktop / Cursor / VS Code - add to config

{
  "mcpServers": {
    "nushey-agents-md-generator": {
      "command": "uvx",
      "args": [
        "agents-md-generator"
      ]
    }
  }
}

Same JSON for Cursor. For VS Code, rename the top-level key from `mcpServers` to `servers`.

Using another client? Same JSON, different key

Claude Desktop · mcpServers

Cursor · mcpServers

VS Code · servers

Windsurf · mcpServers

Zed · context_servers

Cline · mcpServers

Roo Code · mcpServers

Continue · mcpServers

LibreChat · mcpServers

Gemini CLI · mcpServers

Codex CLI · mcp_servers

Full setup guides: every client.

02 · Evidence

Security posture

What to check before giving this server access to your agent - from the registry, GitHub, and our own probes. We don't score safety; we show what's verifiable.

runs as local process (stdio) - runs on your machine with your user's permissions

license MIT - declared in the repository

pypi package agents-md-generator - check the name against the project README before installing (PyPI has no namespace ownership)

registry namespace io.github.nushey is GitHub-verified and matches the repo owner

03 · What AGENTS.md Generator can do

Prose above is summarized from the project's README and registry record - no invented capabilities.

What you can build

An agent gets 3 documented tools across generate, scan, read & search, including generate_agents_md, scan_codebase, read_payload_chunk.

The 3 tools it gives your agent

Extracted from the project's README - what AGENTS.md Generator lets an agent do.

generate_agents_md
- Main entry point. Runs the pipeline internally, embeds writing rules into the payload, and returns chunked read instructions. Use this to create or update AGENT
scan_codebase
- Standalone context tool. Analyzes the codebase and returns a pure data payload with no AGENTS.md mandate. Use this when you need architectural context for any o
read_payload_chunk
- Streams the payload written by either tool in chunks until has_more is false.

Latest releases

v0.6.0 · 2026-08-10

git-first scanning with payload budget for large projects · Fixes · lock compatible MCP dependency

v0.5.5 · 2026-07-29

Tests · add walk equivalence and payload cache guards

v0.5.4 · 2026-06-20

Fixes · move interpretation metadata ahead of full_analysis · bound payload chunks and emit consistent UTF-8 JSON · flatten AST signatures and emit non-ASCII payload JSON

04 · Who maintains AGENTS.md Generator

AGENTS.md Generator is maintained by nushey. It's the only MCP server we track from this author; the repo dates to Mar 2026.

05 · Facts

category
coding agent - ranked #95 of 194 actively-maintained coding agent servers as of 2026-08-25.
release cadence
3 releases in the last 90 days (latest 2026-08-10)
registry
io.github.nushey/agents-md-generator (active, first published 2026-03-24 · 15 versions)
packages
pypi:agents-md-generator

06 · AGENTS.md Generator FAQ

Is AGENTS.md Generator still maintained?

Yes - as of 2026-08-25, its last commit was 2026-08-11 and it shipped 3 releases in the last 90 days. We re-verify nightly.

What can AGENTS.md Generator do?

An agent gets 3 documented tools across generate, scan, read & search, including generate_agents_md, scan_codebase, read_payload_chunk.

How do I install AGENTS.md Generator?

Run `uvx agents-md-generator`. You can also paste the ready-made client config above.

Does AGENTS.md Generator run locally?

Yes - it's a stdio server: it runs on your machine (via uvx) with your user's permissions. Your data stays local unless the server itself calls external APIs.

07 · Alternatives to AGENTS.md Generator