-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathzensical.toml
More file actions
167 lines (152 loc) · 4.96 KB
/
zensical.toml
File metadata and controls
167 lines (152 loc) · 4.96 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
[project]
site_name = "ra-mcp"
site_description = "MCP server and CLI for searching and browsing transcribed historical documents from the Swedish National Archives (Riksarkivet)."
site_author = "AI-Riksarkivet"
site_url = "https://ai-riksarkivet.github.io/ra-mcp/"
copyright = """
Copyright © 2026 AI-Riksarkivet
"""
repo_url = "https://github.com/AI-Riksarkivet/ra-mcp"
repo_name = "AI-Riksarkivet/ra-mcp"
nav = [
{ "ra-mcp" = [
"index.md",
]},
{ "Getting Started" = [
{"Connect" = "getting-started/index.md"},
{"Plugins" = "getting-started/plugins.md"},
{"Local Install" = "getting-started/local.md"},
]},
{ "How it Works" = [
{"MCP & Tools" = "how-it-works/index.md"},
{"Data Sources" = "how-it-works/data-sources.md"},
{"Architecture" = "how-it-works/architecture.md"},
]},
{ "Tools & Skills" = [
{"Overview" = "tools/index.md"},
{"MCP Tools" = "tools/tools.md"},
{"Skills" = "tools/skills.md"},
]},
{ "CLI" = [
{"Overview" = "cli/index.md"},
{"ra search" = "cli/search.md"},
{"ra browse" = "cli/browse.md"},
{"ra serve & tui" = "cli/serve.md"},
]},
{ "API" = [
{"Overview" = "api/index.md"},
{"Common" = "api/common.md"},
{"Search" = "api/search.md"},
{"Browse" = "api/browse.md"},
{"MCP Tools" = "api/mcp-tools.md"},
]},
{ "Development" = [
{"Setup" = "development/index.md"},
{"Deployment" = "development/deployment.md"},
{"Observability" = "development/observability.md"},
{"Security" = "development/security.md"},
]},
]
# ----------------------------------------------------------------------------
# Theme
# ----------------------------------------------------------------------------
[project.theme]
language = "en"
favicon = "assets/favicon.ico"
logo = "assets/ra.svg"
custom_dir = "docs/overrides"
features = [
"announce.dismiss",
"content.action.edit",
"content.action.view",
"content.code.annotate",
"content.code.copy",
"content.code.select",
"content.footnote.tooltips",
"content.tabs.link",
"content.tooltips",
"navigation.footer",
"navigation.instant",
"navigation.instant.prefetch",
"navigation.path",
"navigation.tabs",
"navigation.tabs.sticky",
"navigation.top",
"navigation.tracking",
"search.highlight",
]
# ----------------------------------------------------------------------------
# Color palette (light/dark toggle)
# ----------------------------------------------------------------------------
[[project.theme.palette]]
scheme = "default"
primary = "indigo"
accent = "blue"
toggle.icon = "lucide/sun"
toggle.name = "Switch to dark mode"
[[project.theme.palette]]
scheme = "slate"
primary = "indigo"
accent = "blue"
toggle.icon = "lucide/moon"
toggle.name = "Switch to light mode"
# ----------------------------------------------------------------------------
# Icons
# ----------------------------------------------------------------------------
[project.theme.icon]
repo = "fontawesome/brands/github"
# ----------------------------------------------------------------------------
# Social links
# ----------------------------------------------------------------------------
[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/AI-Riksarkivet/ra-mcp"
[[project.extra.social]]
icon = "fontawesome/brands/docker"
link = "https://hub.docker.com/r/riksarkivet/ra-mcp"
[[project.extra.social]]
icon = "fontawesome/brands/python"
link = "https://pypi.org/project/ra-mcp/"
# ----------------------------------------------------------------------------
# Analytics (Matomo)
# ----------------------------------------------------------------------------
[project.extra.analytics]
provider = "custom"
# ----------------------------------------------------------------------------
# Markdown extensions
# ----------------------------------------------------------------------------
[project.markdown_extensions.pymdownx.snippets]
base_path = ["."]
[project.markdown_extensions.pymdownx.superfences]
custom_fences = [
{ name = "mermaid", class = "mermaid", format = "pymdownx.superfences.fence_code_format" },
]
# ----------------------------------------------------------------------------
# Plugins — mkdocstrings (API reference)
# ----------------------------------------------------------------------------
[project.plugins.mkdocstrings]
default_handler = "python"
[project.plugins.mkdocstrings.handlers.python]
paths = [
"packages/common/src",
"packages/search-lib/src",
"packages/browse-lib/src",
"packages/xml-lib/src",
"packages/iiif-lib/src",
"packages/oai-pmh-lib/src",
"packages/search-mcp/src",
"packages/browse-mcp/src",
"packages/guide-mcp/src",
"packages/htr-mcp/src",
"packages/viewer-mcp/src",
]
[project.plugins.mkdocstrings.handlers.python.options]
docstring_style = "google"
show_source = true
show_root_heading = true
show_root_full_path = false
show_symbol_type_heading = true
show_symbol_type_toc = true
show_bases = true
merge_init_into_class = true
filters = ["!^_"]