Recon MCP Knowledge MCP Server

MCP server for all Recon knowledge — getrecon.xyz, book.getrecon.xyz, and getrecon.substack.com

Local serverstdio

What is the Recon MCP Knowledge MCP server?

Recon MCP Knowledge MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server for all Recon knowledge — getrecon.xyz, book.getrecon.xyz, and getrecon.substack.com.

What you get

MCP server that makes Recon documentation searchable by AI tools. Fetches and parses getrecon.xyz/llms-full.txt into structured, queryable content.

What the assistant can call

Once Recon MCP Knowledge is connected, these are the calls the assistant has available:

  • search_glossary — query: string
  • get_blog_post — slug: string
  • get_comparison — slug: string
  • search_site — query: string
  • list_tools(none)
  • get_book_chapter — slug: string
  • get_book_concept — slug: string
  • search_book — query: string
  • list_book_chapters(none)
  • get_substack_post — slug: string
  • search_substack — query: string
  • list_substack_posts(none)

Setting it up

The server ships on npm as @recon-fuzz-mcp/knowledge, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Choosing this one

Plenty of knowledge and memory servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Recon MCP Knowledge's toolset — search_glossary, get_blog_post, get_comparison and 10 more — is a fair guide to whether it matches your workflow. It is maintained by recon-fuzz; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Recon MCP Knowledge.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the recon mcp knowledge mcp server does with a few real requests.

Available tools

ToolWhat it does
search_glossaryquery: string
get_blog_postslug: string
get_comparisonslug: string
search_sitequery: string
list_tools_(none)_
get_book_chapterslug: string
get_book_conceptslug: string
search_bookquery: string
list_book_chapters_(none)_
get_substack_postslug: string
search_substackquery: string
list_substack_posts_(none)_
CursorNo API key needed. The server fetches public documentation only.

How to install the Recon MCP Knowledge MCP server

{
  "mcpServers": {
    "recon-mcp-knowledge": {
      "command": "npx",
      "args": ["-y", "@recon-fuzz-mcp/knowledge"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Recon MCP Knowledge to search glossary.
  • Use Recon MCP Knowledge to get blog post.
  • Use Recon MCP Knowledge to get comparison.

Frequently asked questions

It connects Recon MCP Knowledge to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (search_glossary, get_blog_post, get_comparison, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Recon MCP Knowledge directly.