- fix GSDFC spec contradictions in __init__ docstring (parenthesized types, fenced-block rule) and sync generated README - rewrite docstrings across loaders, models, nav, servers, renderers, cli; sync .pyi stubs - add pydoclint (google style) gate to dev extras and pyproject config - fix mcp nav resources doc:// -> docs:// - refresh docs/lib and docs/mcp, drop stale docforge/ duplicate group - update wiki pages and add GSDFC + MCP guides under 05_development
21 lines
623 B
Python
21 lines
623 B
Python
from pathlib import Path
|
|
from typing import Any, Literal
|
|
|
|
from mcp.server.fastmcp import FastMCP
|
|
|
|
class MCPServer:
|
|
"""MCP server serving a pre-generated documentation bundle.
|
|
|
|
Exposes read-only documentation resources and a health-check tool.
|
|
"""
|
|
|
|
mcp_root: Path
|
|
app: FastMCP
|
|
|
|
def __init__(self, mcp_root: Path, name: str) -> None: ...
|
|
def _read_json(self, path: Path) -> Any: ...
|
|
def _register_resources(self) -> None: ...
|
|
def _register_tools(self) -> None: ...
|
|
def run(self, transport: Literal["stdio", "sse", "streamable-http"] = ...) -> None:
|
|
"""Start the MCP server."""
|