Skip to content
Back to search
100
MCP live MCP 2025-06-18 streamable-http

Moxie Docs

io.github.jackalope-dev/moxie-docs

Living docs and MCP context for GitHub repos — conventions, gaps, and source-cited pages on merge.

Uptime
100.0%
1 direct probes · 30d
Response
2586ms
last probe
Tools
12
callable
Resources
1
readable
Prompts
3
available

Tools · 12

moxie.get_conventions

Get the coding conventions Moxie inferred for the repository. Read-only; no side effects. Returns a Markdown list grouped by category (e.g. testing, structure, docs, review); each convention has a tit…

moxie.search_docs

Keyword and semantic search across the connected repository's generated docs, conventions, documentation gaps, AI-context notes, and indexed code. Read-only; no side effects. Returns ranked matches in…

moxie.list_docs

List the repository's generated documentation as a browsable table of contents - every doc page, not a query-filtered subset. Read-only; no side effects. Returns Markdown grouped by section, each entr…

moxie.get_doc_gaps

List the unresolved documentation gaps Moxie found - areas of the codebase that lack docs. Read-only; no side effects. Returns a Markdown list, each gap with a title, severity, summary, and suggested …

moxie.get_documentation_opportunities

List the actionable documentation updates Moxie recommends as a prioritized queue: missing docs, drift repairs, and PR-template work. Read-only; no side effects. Returns a Markdown list, each opportun…

moxie.get_documentation_patterns

Get Moxie's summary of how THIS repository organizes and maintains documentation - where docs live relative to code and how they are kept current. Read-only; no side effects. Returns a Markdown list o…

moxie.get_ai_context

Get the compact briefing an agent should read before editing this repository: index status, verified commands, agent tips, top conventions, open documentation gaps, and queued documentation opportunit…

moxie.get_doc_impact

Given the file paths an agent is about to change (and optionally a subset being deleted), return the conventions, documentation gaps, and existing/related docs whose evidence overlaps those paths, plu…

moxie.get_api_context

Given file paths an agent is about to touch, return structured context for any API endpoints they map to: method, path, request/response schema, and known consumers/features. Read-only; no side effect…

moxie.review_change

Self-review a change you are about to commit BEFORE opening the PR. Pass the proposed new state of each changed file (and any deleted paths); Moxie returns a severity-ranked list of violations to fix:…

moxie.propose_doc_update

Propose a documentation file to add or update as part of YOUR current change. Records a new proposal each call (not idempotent) and does NOT modify your repository or open a PR - Moxie resolves the ta…

moxie.propose_doc_removal

Propose deleting a Moxie-tracked documentation file that your change makes irrelevant, as part of YOUR current change. Moxie validates the path and returns it for you to delete in your working branch;…

Resources · 1

Moxie Docs - getting started

What Moxie Docs is, which tools and resources this MCP server exposes, and how to self-serve a repository token to unlock per-repo context.

moxie://getting-started

Prompts · 3

document-this-change

Document the code change you are making so the docs land in the same PR. Runs Moxie's doc-impact check on your changed paths and walks you through proposing the doc updates.

fix-stale-docs

Find this repo's open documentation gaps and drift opportunities and repair them, proposing updates through Moxie.

review-before-finalize

Self-review the change you just made before opening the PR: run Moxie's guardrail over your diff to catch convention breaches, docs your change makes false, undocumented new surface, and broken refere…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "moxie_docs": {
      "url": "https://moxiedocs.com/api/mcp",
      "transport": "streamable-http"
    }
  }
}