forked from MCP-Pipeline/MCPStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
193 lines (182 loc) · 5.61 KB
/
mkdocs.yml
File metadata and controls
193 lines (182 loc) · 5.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
repo_url: https://github.com/MCP-Pipeline/MCPStack
edit_uri: blob/main/docs/
site_name: MCPStack
site_author: Simon Provost
copyright: Maintained by Simon Provost, 2025-present
site_description: >
Stack & Orchestrate MCP Tools — The Scikit-Learn Way, For LLMs
remote_branch: main
theme:
name: 'material'
custom_dir: 'docs/theme'
favicon: 'assets/images/favicon.ico'
logo: 'assets/logo_dark.png'
icon:
repo: fontawesome/brands/github
language: en
palette:
- media: "(prefers-color-scheme: light)"
scheme: scikit_light
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference
font:
text: Roboto
code: Roboto Mono
features:
- announce.dismiss
- content.tabs.link
- content.code.copy
- content.code.select
- content.code.annotate
- navigation.tabs
- navigation.top
- search.suggest
- toc.follow
- toc.integrate
extra_css:
- 'stylesheets/extra.css'
- 'stylesheets/landing.css'
- 'stylesheets/extra_mkdocs.css'
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://unpkg.com/mathjax@3/es5/tex-mml-chtml.js
- custom.js
- assets/js/marketplace-filter.js
plugins:
- privacy
- social
- search
- minify
- glightbox:
touchNavigation: true
loop: false
effect: zoom
slide_effect: slide
width: 100%
height: auto
zoomable: true
draggable: true
auto_caption: false
caption_position: bottom
- document-dates:
position: bottom
type: date
locale: en
date_format: '%Y-%m-%d'
time_format: '%H:%M:%S'
exclude:
- index.md
show_author: true
- mkdocstrings:
handlers:
python:
options:
selection:
docstring_style: google
heading_level: 3
show_source: true
show_root_heading: true
show_root_full_path: false
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/simonprovost/
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/simonprovostdev/
- icon: fontawesome/brands/google-scholar
link: https://scholar.google.com/citations?user=Lv_LddYAAAAJ
- icon: fontawesome/brands/orcid
link: https://orcid.org/0000-0001-8402-5464
- icon: fontawesome/brands/researchgate
link: https://www.researchgate.net/profile/Provost-Simon
- icon: fontawesome/brands/stack-overflow
link: https://stackoverflow.com/users/9814037/simon-provost
- icon: fontawesome/solid/building-columns
link: https://www.kent.ac.uk/computing/people/4973/provost-simon
markdown_extensions:
- markdown.extensions.admonition
- markdown.extensions.codehilite:
guess_lang: false
- def_list
- markdown.extensions.footnotes
- markdown.extensions.meta
- markdown.extensions.toc:
permalink: true
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.keys
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.blocks.caption
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
- attr_list
- md_in_html
- pymdownx.arithmatex:
generic: true
nav:
- Home: index.md
- Getting Started:
- Overview: getting_started.md
- Concepts:
- Tools & Actions: guides/concepts/tools-and-actions.md
- Presets: guides/concepts/presets.md
- Configuration & Env Vars: guides/concepts/config-and-env.md
- MCP Hosts & Config Generators: guides/concepts/mcp-hosts-and-configs.md
- MCPs Marketplace: mcp_marketplace.md
- Tutorials:
- Overview: tutorials/index.md
- Build your first pipeline: tutorials/first-pipeline.md
- Saving & Loading Pipelines: tutorials/save-load.md
- Writing your first Tool: tutorials/first-tool.md
- Creating a Preset: tutorials/first-preset.md
- MIMIC + Jupyter Pipeline: tutorials/mimic-jupyter.md
- Urban Mapper + Jupyter Pipeline: tutorials/urbanmapper-jupyter.md
- API Reference:
- MCPStack Core:
- MCPStackCore: API/mcpstackcore.md
- StackConfig: API/stackconfig.md
- Tools:
- BaseTool: API/tools/base_tool.md
- BaseToolCLI: API/tools/base_tool_cli.md
- Tool Discovery Registry: API/tools/registry.md
- Example Tool (Hello_World): API/tools/hello_world.md
- Presets:
- Preset Base: API/presets/base.md
- Preset Registry: API/presets/registry.md
- MCP Config Generators:
- Registry: API/mcp_config_generators/registry.md
- FastMCP: API/mcp_config_generators/fastmcp.md
- Claude (ClaudeDesktop): API/mcp_config_generators/claude.md
- Universal: API/mcp_config_generators/universal.md
- Utilities:
- Exceptions: API/utils/exceptions.md
- Logging: API/utils/logging.md
- CLI (Programmatic):
- StackCLI: API/cli/stack_cli.md
- "Branding & UX": ./BRANDING.md