* FreeCAD addon support for Workbench and Plugins * docs: refactor docs and clean up linters, etc. * Remove mdformat * test: improve test coverage * test:Lots of general fixes * chore: more general fixes
85 lines
2.2 KiB
YAML
85 lines
2.2 KiB
YAML
site_name: FreeCAD MCP Server
|
|
site_description: MCP server for FreeCAD integration with AI assistants
|
|
site_url: https://github.com/spkane/freecad-robust-mcp-and-more
|
|
repo_url: https://github.com/spkane/freecad-robust-mcp-and-more
|
|
repo_name: spkane/freecad-robust-mcp-and-more
|
|
|
|
theme:
|
|
name: material
|
|
palette:
|
|
- scheme: default
|
|
primary: blue
|
|
accent: blue
|
|
toggle:
|
|
icon: material/brightness-7
|
|
name: Switch to dark mode
|
|
- scheme: slate
|
|
primary: blue
|
|
accent: blue
|
|
toggle:
|
|
icon: material/brightness-4
|
|
name: Switch to light mode
|
|
features:
|
|
- content.code.copy
|
|
- content.code.annotate
|
|
- navigation.instant
|
|
- navigation.tracking
|
|
- navigation.tabs
|
|
- navigation.sections
|
|
- toc.integrate
|
|
- search.suggest
|
|
- search.highlight
|
|
|
|
markdown_extensions:
|
|
- pymdownx.highlight:
|
|
anchor_linenums: true
|
|
- pymdownx.superfences:
|
|
custom_fences:
|
|
- name: mermaid
|
|
class: mermaid
|
|
format: !!python/name:pymdownx.superfences.fence_code_format
|
|
- pymdownx.inlinehilite
|
|
- pymdownx.snippets
|
|
- admonition
|
|
- pymdownx.details
|
|
- attr_list
|
|
- md_in_html
|
|
- tables
|
|
- toc:
|
|
permalink: true
|
|
|
|
plugins:
|
|
- search
|
|
- mkdocstrings:
|
|
handlers:
|
|
python:
|
|
options:
|
|
docstring_style: google
|
|
show_source: true
|
|
show_root_heading: true
|
|
show_category_heading: true
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- Getting Started:
|
|
- Installation: getting-started/installation.md
|
|
- Configuration: getting-started/configuration.md
|
|
- Quick Start: getting-started/quickstart.md
|
|
- User Guide:
|
|
- Connection Modes: guide/connection-modes.md
|
|
- MCP Bridge Workbench: guide/workbench.md
|
|
- FreeCAD Macros: guide/macros.md
|
|
- Tools Overview: guide/tools.md
|
|
- MCP Resources: guide/resources.md
|
|
- Detailed User Guide: USER_GUIDE.md
|
|
- Tools Reference: MCP_TOOLS_REFERENCE.md
|
|
- Comparisons:
|
|
- Other Implementations: COMPARISON.md
|
|
- API Reference:
|
|
- Server: api/server.md
|
|
- Bridge: api/bridge.md
|
|
- Config: api/config.md
|
|
- Development:
|
|
- Contributing: development/contributing.md
|
|
- Architecture: development/architecture.md
|