docs: refresh doc-forge library and MCP bundle

- collect regenerated doc-forge combined site (wiki + lib)
- drop stale lib/docforge duplicate subtree
- mcp bundle now uses docs:// module resources
This commit is contained in:
2026-09-12 13:12:55 +05:30
parent bd8ba6e67c
commit 167d44fcfe
107 changed files with 4754 additions and 40058 deletions

View File

@@ -339,6 +339,10 @@
@@ -423,6 +427,52 @@
<li class="md-nav__item">
<a href="../../../wiki/05_development/03_gsdfc_guide/" class="md-nav__link">
<span class="md-ellipsis">
Gsdfc Guide
</span>
</a>
</li>
<li class="md-nav__item">
<a href="../../../wiki/05_development/04_mcp_guide/" class="md-nav__link">
<span class="md-ellipsis">
Mcp Guide
</span>
</a>
</li>
</ul>
</nav>
@@ -1279,6 +1329,18 @@
<p>MCP server implementation.</p>
<p>This module defines the <code>MCPServer</code> class, which serves pre-generated
documentation bundles through the Model Context Protocol (MCP).</p>
<hr />
<details class="notes" open>
<summary>Notes</summary>
<ul>
<li>The served bundle is generated offline by <code>MCPRenderer</code>.</li>
<li>Missing resources are reported as structured error dictionaries rather
than raising exceptions.</li>
<li>The server exposes read-only resources and a single health-check tool.</li>
</ul>
</details> <hr />
@@ -1310,6 +1372,43 @@ documentation bundles through the Model Context Protocol (MCP).</p>
<p>The server exposes documentation resources and diagnostic tools through
MCP endpoints backed by JSON files generated by the MCP renderer.</p>
<p><span class="doc-section-title">Attributes:</span></p>
<table>
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr class="doc-section-item">
<td><code><span title="docforge.servers.mcp_server.MCPServer.mcp_root">mcp_root</span></code></td>
<td>
<code><span title="pathlib.Path">Path</span></code>
</td>
<td>
<div class="doc-md-description">
<p>Directory containing the generated MCP documentation bundle.</p>
</div>
</td>
</tr>
<tr class="doc-section-item">
<td><code><span title="docforge.servers.mcp_server.MCPServer.app">app</span></code></td>
<td>
<code><span title="mcp.server.fastmcp.FastMCP">FastMCP</span></code>
</td>
<td>
<div class="doc-md-description">
<p>Underlying FastMCP application instance that registers resources
and tools.</p>
</div>
</td>
</tr>
</tbody>
</table>
<p>Initialize the MCP server.</p>