Files
freecad-robust-mcp-fc111/mkdocs.yaml
T
Sean P. KaneandGitHub a775852ce9 chrore: major overhaul of docs, commands, and workflows (#23)
* ci: add status badges to README

* chore: major overhaul - docs, commands & workflows

* fix: general fixes and improvements

* chore: various updates and fixes

* chore: minor fixes
2026-01-07 09:44:45 -08:00

143 lines
3.9 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
custom_dir: docs/overrides
palette:
# Dark mode as default
- scheme: slate
primary: deep purple
accent: purple
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: deep purple
accent: purple
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- content.code.copy
- content.code.annotate
- content.tabs.link
- navigation.instant
- navigation.tracking
- navigation.tabs
- navigation.sections
- navigation.top
- toc.follow
- search.suggest
- search.highlight
- search.share
icon:
repo: fontawesome/brands/github
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.keys
- pymdownx.mark
- pymdownx.critic
- pymdownx.caret
- pymdownx.tilde
- admonition
- pymdownx.details
- attr_list
- md_in_html
- def_list
- footnotes
- tables
- toc:
permalink: true
toc_depth: 3
plugins:
- search
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
show_root_heading: true
show_category_heading: true
- git-revision-date-localized:
enable_creation_date: true
type: timeago
- minify:
minify_html: true
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
- macros:
include_yaml:
- docs/variables.yaml
# Use different delimiters to avoid conflicts with Python dicts in code blocks
j2_variable_start_string: "{{@"
j2_variable_end_string: "@}}"
j2_block_start_string: "{%@"
j2_block_end_string: "@%}"
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/spkane/freecad-robust-mcp-and-more
- icon: fontawesome/brands/docker
link: https://hub.docker.com/r/spkane/freecad-robust-mcp
- icon: fontawesome/brands/python
link: https://pypi.org/project/freecad-robust-mcp/
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
- Detailed Architecture: development/architecture-detailed.md
- Release Process: development/releasing.md
- MkDocs Guide: development/mkdocs-guide.md