Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Doc Bridge
D
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:45:29 PM

Doc Bridge

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Resolve documentation ownership, edit roots, checks, and human handoffs before an agent edits code.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "doc-bridge": {
      "command": "npx",
      "args": [
        "-y",
        "doc-bridge"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

doc-bridge

npm CI Pages OpenSSF Best Practices License: MIT Node TypeScript

npm: @agentskit/doc-bridge Β· CLI: ak-docs Β· Landing: agentskit-io.github.io/doc-bridge

Topics: ai-agents Β· documentation Β· developer-experience Β· mcp Β· llms-txt Β· typescript

Compatibility: node >=22 Β· TypeScript 5.8+ Β· pnpm, npm, or yarn consumers

Turn your docs into executable handoffs for coding agents.

doc-bridge reads your repo docs, ownership map, and human documentation site, then gives every agent the same answer:

  • where to start reading
  • which files/packages it may edit
  • which checks prove the change
  • which human docs explain the feature

It is not a wiki or hosted RAG. The core works without any LLM or API key; the documentation portal dogfoods AgentsKit Chat as an optional surface over that deterministic layer.

doc-bridge maps human docs into structured agent handoffs

Why teams use it

Agents are powerful, but most repo docs are written for humans. The result is familiar: the agent guesses ownership, edits the sibling package, runs the wrong test, or ignores the human guide that already explained the rule.

doc-bridge works in both directions:

doc-bridge connects human docs to coding agents and agent memory back to draft docs

DirectionWhat it doesCommand
Human docs β†’ agentsTurns Fumadocs, Docusaurus, markdown, and ownership docs into AgentHandoffak-docs index Β· ak-docs query --agent
Agent memory β†’ docsReads .agent-memory/** and .cursor/rules/*.mdc, classifies what should become project docs, and drafts a human-reviewed promotionak-docs memory ingest Β· classify Β· promote --pr

The handoff is a routing contract:

config.json
{
  "startHere": "docs/for-agents/packages/auth.md",
  "editRoots": ["packages/auth"],
  "checks": ["pnpm --filter @demo/auth test"],
  "humanDoc": "/docs/guides/auth"
}

That contract works from the terminal, MCP, CI, and optional RAG/chat.

60-second proof

Terminal
npm i -D @agentskit/doc-bridge
npx ak-docs demo --text

No config, no docs to read first. Output shows before/after, a real handoff, gate red→green, and the MCP snippet:

Code
After (handoff.resolve / query --agent)
  βœ“ target:  auth (packages/auth)
  βœ“ start:   docs/for-agents/packages/auth.md
  βœ“ edit:    packages/auth
  βœ“ checks:  pnpm --filter @demo/auth test Β· pnpm --filter @demo/auth lint
  βœ“ human guide: /docs/guides/auth

Gate: red β†’ green

Monorepo fixture with auth + billing:

Terminal
npx ak-docs demo --fixture monorepo --text

Verify the real handoff path

This checked example runs the bundled demo through the public CLI. The README gate compares this block byte-for-byte with the executable fixture and runs it on every PR.

server.ts
import { execFileSync } from 'node:child_process'

execFileSync(process.execPath, ['bin/ak-docs.js', 'demo', '--text'], {
  stdio: 'inherit',
})
bash
node examples/verify-handoff.mjs

Full setup in your repo:

Terminal
npx ak-docs init
npx ak-docs index
npx ak-docs query package example --agent
ak-docs mcp install --cursor   # wires MCP into .cursor/mcp.json

Using Cline? Follow the deterministic llms-install.md setup. It runs the pinned MCP server through pnpm dlx without adding Doc Bridge to your repository dependencies.

What ships

doc-bridge index used through CLI, MCP, CI, and documentation adapters

SurfaceUse it forCommand / artifact
CLIInspect ownership, search docs, run gates, ask local questionsak-docs query, search, ask, doctor, gate
MCP serverLet Cursor, Claude Code, Codex-style agents resolve handoffs before editingak-docs mcp, handoff.resolve
GitHub Action / CIFail stale indexes and broken human-doc links on PRsAgentsKit-io/doc-bridge@v1.2.1
Documentation conformanceCheck the stable ecosystem standard with auditable evidenceak-docs conformance run documentation-standard-v1 --text
Doc adaptersLink human docs to agent docsfumadocs, docusaurus, vitepress, starlight, nextra, plain-markdown
Monorepo routingDiscover workspaces and checkspnpm-monorepo, nx
Memory pipelineTurn agent notes into reviewable documentation draftsmemory ingest, classify, promote --pr
Optional RAG/chatGround chat in the same handoff-first index@agentskit/rag, @agentskit/ink, ak-docs chat

See docs/getting-started.md, docs/mcp.md, and docs/examples.md.

Claude Desktop MCP Bundle

Doc Bridge can be packaged as a local MCP Bundle for Claude Desktop. The bundle keeps the eight MCP tools read-only and asks the user to select the repository's doc-bridge.config.json; that file defines the project boundary Doc Bridge may read.

From a clean checkout:

bash
pnpm install --frozen-lockfile
pnpm mcpb:pack

The command builds Doc Bridge, creates a production-only staging directory, validates the MCPB manifest, packs the extension, checks its file inventory, and writes the local artifact under .mcpb-output/. Generated bundles and staging directories are intentionally excluded from Git.

Current packaged compatibility is macOS. Other operating systems will be declared only after the exact bundle passes an independent installation test there.

Why this exists

PatternGap
Wiki + RAGExplains; weak on where to act and proof docs match code
AGENTS.md aloneGreat static rules; no ownership index, gates, or human bridge
Context7-class toolsLibrary docs for the model; not your monorepo routing

doc-bridge ships AgentHandoff JSON:

config.json
{
  "type": "agent-handoff",
  "startHere": "docs/for-agents/packages/auth.md",
  "editRoots": ["packages/auth"],
  "checks": ["pnpm --filter @demo/auth test"],
  "humanDoc": "/docs/guides/auth",
  "bridge": { "humanDoc": "linked" }
}

When a human guide is missing, handoffs surface it as a feature:

config.json
{
  "bridge": {
    "humanDoc": "missing",
    "action": "ak-docs bootstrap agent-docs"
  },
  "notes": ["Human guide missing for billing. Run: ak-docs bootstrap agent-docs"]
}

Four loops (with real commands)

LoopCommandWhat you see
Actak-docs query package auth --agenteditRoots, checks, startHere
Bridgeak-docs bootstrap agent-docsDraft agent docs from human site; bridge.humanDoc in handoff
Learnak-docs memory classify β†’ promoteHITL draft for agent corpus
Explainak-docs ask "auth is broken in staging"Ownership match + handoff preview + next commands
bash
ak-docs ask "who owns schemas"
# Best match: ownership os-core
# Handoff preview
#   start:  docs/for-agents/packages/os-core.md
#   edit:   packages/os-core
#   checks: pnpm --filter os-core lint Β· pnpm --filter os-core test

Coverage your team checks daily

bash
ak-docs doctor --text
ak-docs doctor --badge          # shields.io markdown for README
ak-docs index --watch           # keep index fresh while editing docs
Code
Score: 82/100 (B)
  Agent docs:      8/10 (80% handoff-ready)
  Human guides:    6/10 (60% bridged)
  Gates:           3/3 passing

Next actions
  β†’ ak-docs bootstrap agent-docs
  β†’ ak-docs query package billing --agent

Agent uses it alone

  1. MCP auto-wire: ak-docs mcp install --cursor
  2. Skill/rule: paste docs/skills/doc-bridge.md into Cursor rules β€” agents call handoff.resolve before editing packages/*
  3. Handoff is the next step: startHere, checks, and bridge are in the JSON/MCP response

CI as first-class citizen

Reuse the bundled GitHub Action on every PR:

yaml
permissions:
  contents: read

steps:
  - uses: actions/checkout@v4
  - uses: AgentsKit-io/doc-bridge@v1.2.1
    with:
      config-path: doc-bridge.config.json

The Action checks the committed index before changing anything, pins the matching npm package, and rejects non-exact package versions. See the Marketplace guide.

handoff coverage human bridge

Run ak-docs doctor --badge locally to refresh β€” or pnpm coverage:badge in CI.

Or locally:

bash
ak-docs index && ak-docs gate run

Gate fails with Index is stale. Run: ak-docs index β€” same check in CI annotations.

Product surface

Core β€” always (no LLM)

SurfacePurpose
Demoak-docs demo β€” bundled fixture, no setup
DoctorCoverage score, missing humanDoc/agent doc, next actions
IndexDocBridgeIndex + contentHash + llms.txt + capabilities
CLIquery / search / list / ask / gate / memory / bootstrap
MCPhandoff.resolve, doc.search, doc.get, gate.status, …
GatesFreshness, human-link validation, optional OKF style
Adapterspnpm-monorepo, nx, fumadocs, docusaurus, vitepress, starlight, nextra, plain-markdown

Optional AgentsKit peers

Terminal
npm i -D @agentskit/rag @agentskit/ink @agentskit/adapters @agentskit/memory react
ak-docs rag ingest && ak-docs chat

See docs/chat-and-rag.md.

AgentsKit ecosystem

Who uses it (public)

Designed for and dogfooded on open AgentsKit surfaces:

SurfaceLink
for-agentsagentskit.io/docs/for-agents
Registryregistry.agentskit.io
Playbookplaybook.agentskit.io
AgentsKit Chatdocumentation Β· source
AgentsKit OSakos.agentskit.io
Code Reviewrepository-native CLI
This repoCI green Β· ak-docs gate run on every PR

Playbook pattern: docs/playbook/doc-bridge-pattern.md β€” export with ak-docs playbook pattern --text

Configuration examples

ProfileExample
Solo markdownexamples/minimal-plain-markdown.config.ts
pnpm monorepoexamples/pnpm-monorepo.config.ts
Nx monorepoexamples/nx-monorepo.config.ts
Demo monorepoexamples/demo-monorepo/
Fumadocs + chatexamples/fumadocs-with-chat.config.ts
VitePressexamples/vitepress-only.config.ts
Astro Starlightexamples/starlight-only.config.ts
Nextraexamples/nextra-only.config.ts

Contract: docs/spec/config-v1.md Β· CLI: docs/spec/cli.md Β· MCP: docs/mcp.md Β· Skill: docs/skills/doc-bridge.md Β· Pattern: docs/playbook/doc-bridge-pattern.md Β· Recipes: docs/recipes/index-pipeline.md

Learn loop β€” memory β†’ draft PR

bash
ak-docs memory ingest
ak-docs memory classify
ak-docs memory promote --pr --dry-run   # preview gh commands
ak-docs memory promote --pr              # opens draft PR via gh

Status

v1.2.1 stable β€” deterministic Documentation Standard v1 conformance, verified release provenance, Fumadocs portal, Marketplace Action, doctor + CI + skill, and full Tier A/B/C.

bash
pnpm install && pnpm build && pnpm test
pnpm smoke:ollama    # optional β€” skips if Ollama/peers unavailable

Landing: https://doc-bridge.agentskit.io/

Privacy Policy

The local MCP server reads only the project selected through doc-bridge.config.json. It does not require an API key, send project data to AgentsKit, collect telemetry, or write project files through its eight MCP tools. See the complete Privacy Policy for accessed paths, use, storage, sharing, retention, optional integrations, and contact information.

Contributing

Issues and PRs are welcome. Start here:

NeedDoc
Local setup, tests, release flowCONTRIBUTING.md
Governance and maintainer responsibilitiesGOVERNANCE.md
Vulnerability reportsSECURITY.md
Community standardsCODE_OF_CONDUCT.md
Release historyCHANGELOG.md
Product positioningdocs/POSITIONING.md

License

MIT

Related MCP Servers

View all in Developer Tools View all alternatives
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • A
    Agent Skills Search Server

    Search and discover Agent Skills from the skills.sh registry. Powered by HAPI MCP server.

    πŸ’» Developer Tools0 views
    Compare vs Agent Skills Search Server β†’
  • G
    Graphql

    Turn any GraphQL API into MCP tools. Zero config, zero code.

    πŸ’» Developer Tools0 views
    Compare vs Graphql β†’

Frequently Asked Questions about Doc Bridge

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "doc-bridge": { "command": "npx", "args": ["-y", "Doc Bridge"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewDoc Bridge AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/doc-bridge?style=directory)](https://allmcps.com/mcp/doc-bridge)
HTML Embed
<a href="https://allmcps.com/mcp/doc-bridge"><img src="https://allmcps.com/api/badge/doc-bridge?style=directory" alt="Doc Bridge on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
28Quality signal: Emerging Β· 28/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools12/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Doc Bridge β†’Install in Claude DesktopInstall in CursorInstall in VS Code