← moxiedocs.com

INDIVIDUAL MCP TOOL

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 opportunities.

moxiedocs.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://moxiedocs.com/api/mcp

No auth detected

Connect to this endpoint to inspect the live schema for moxie.get_ai_context and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

moxiedocs.com

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.moxie-docs]
url = "https://moxiedocs.com/api/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "moxie-docs": {
      "type": "http",
      "url": "https://moxiedocs.com/api/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: moxie-docs
Remote MCP URL: https://moxiedocs.com/api/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "moxie-docs": {
      "url": "https://moxiedocs.com/api/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "moxie-docs": {
      "type": "http",
      "url": "https://moxiedocs.com/api/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "moxie-docs",
  "transport": "streamable-http",
  "url": "https://moxiedocs.com/api/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • moxie.get_conventions — Get the coding conventions Moxie inferred for the repository.
  • moxie.search_docs — Keyword and semantic search across the connected repository's generated docs, conventions, documentation gaps, AI-context notes, and indexed code.
  • moxie.list_docs — List the repository's generated documentation as a browsable table of contents - every doc page, not a query-filtered subset.
  • moxie.get_doc_gaps — List the unresolved documentation gaps Moxie found - areas of the codebase that lack docs.
  • moxie.get_documentation_opportunities — List the actionable documentation updates Moxie recommends as a prioritized queue: missing docs, drift repairs, and PR-template work.
  • 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.
  • 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, plus a net-new/undocumented analysis and any removal candidates.
  • 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.