-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsidebars.ts
More file actions
302 lines (287 loc) · 9.64 KB
/
sidebars.ts
File metadata and controls
302 lines (287 loc) · 9.64 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
import { buildCliReferenceSidebar } from './src/utils/buildHierarchicalSidebar';
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
/**
* Creating a sidebar enables you to:
- create an ordered group of docs
- render a sidebar for each doc of that group
- provide next/previous navigation
The sidebars can be generated from the filesystem, or explicitly defined here.
Create as many sidebars as you want.
*/
const sidebars: SidebarsConfig = {
toolhiveSidebar: [
'toolhive/index',
{
type: 'category',
label: 'ToolHive UI',
description: 'How to use the ToolHive desktop application',
link: {
type: 'doc',
id: 'toolhive/guides-ui/index',
},
items: [
'toolhive/guides-ui/quickstart',
'toolhive/guides-ui/install',
'toolhive/guides-ui/registry',
{
type: 'category',
label: 'Run MCP servers',
description: 'How to install and run MCP servers in the ToolHive UI',
collapsed: false,
collapsible: false,
link: {
type: 'doc',
id: 'toolhive/guides-ui/run-mcp-servers',
},
items: [
'toolhive/guides-ui/group-management',
'toolhive/guides-ui/secrets-management',
'toolhive/guides-ui/network-isolation',
'toolhive/guides-ui/customize-tools',
],
},
'toolhive/guides-ui/client-configuration',
'toolhive/guides-ui/cli-access',
'toolhive/guides-ui/mcp-optimizer',
'toolhive/guides-ui/playground',
],
},
{
type: 'category',
label: 'ToolHive CLI',
description: 'How to use the ToolHive CLI for managing MCP servers',
link: {
type: 'doc',
id: 'toolhive/guides-cli/index',
},
items: [
'toolhive/guides-cli/quickstart',
'toolhive/guides-cli/install',
'toolhive/guides-cli/registry',
{
type: 'category',
label: 'Run MCP servers',
description: 'How to run MCP servers with the ToolHive CLI',
collapsed: false,
collapsible: false,
link: {
type: 'doc',
id: 'toolhive/guides-cli/run-mcp-servers',
},
items: [
'toolhive/guides-cli/manage-mcp-servers',
'toolhive/guides-cli/group-management',
'toolhive/guides-cli/secrets-management',
],
},
'toolhive/guides-cli/client-configuration',
'toolhive/guides-cli/skills-management',
{
type: 'category',
label: 'Permissions and security',
description:
'How to configure filesystem and network access for MCP servers',
collapsed: false,
collapsible: false,
link: {
type: 'doc',
id: 'toolhive/guides-cli/custom-permissions',
},
items: [
'toolhive/guides-cli/filesystem-access',
'toolhive/guides-cli/thvignore',
'toolhive/guides-cli/network-isolation',
],
},
{
type: 'category',
label: 'Advanced workflows',
description: 'Build, test, secure, and automate',
collapsed: true,
items: [
'toolhive/guides-cli/auth',
'toolhive/guides-cli/token-exchange',
'toolhive/guides-cli/webhooks',
'toolhive/guides-cli/telemetry-and-metrics',
'toolhive/guides-cli/test-mcp-servers',
'toolhive/guides-cli/build-containers',
'toolhive/guides-cli/advanced-cicd',
{
type: 'category',
label: 'API server',
description: 'How to set up and use the ToolHive API server',
link: {
type: 'doc',
id: 'toolhive/guides-cli/api-server',
},
items: ['toolhive/reference/api'],
},
],
},
{
type: 'category',
label: 'Command reference',
description: 'Detailed reference for ToolHive CLI commands',
collapsed: true,
items: buildCliReferenceSidebar(),
},
],
},
{
type: 'category',
label: 'Kubernetes Operator',
description: 'How to deploy and manage ToolHive on Kubernetes',
link: {
type: 'doc',
id: 'toolhive/guides-k8s/index',
},
items: [
'toolhive/guides-k8s/intro',
'toolhive/guides-k8s/quickstart',
'toolhive/guides-k8s/deploy-operator',
'toolhive/guides-k8s/run-mcp-k8s',
'toolhive/guides-k8s/remote-mcp-proxy',
'toolhive/guides-k8s/mcp-server-entry',
'toolhive/guides-k8s/connect-clients',
'toolhive/guides-k8s/customize-tools',
'toolhive/guides-k8s/auth-k8s',
'toolhive/guides-k8s/redis-session-storage',
'toolhive/guides-k8s/rate-limiting',
'toolhive/guides-k8s/token-exchange-k8s',
'toolhive/guides-k8s/telemetry-and-metrics',
'toolhive/guides-k8s/logging',
'toolhive/guides-k8s/migrate-to-v1beta1',
'toolhive/reference/crd-spec',
],
},
{
type: 'category',
label: 'Virtual MCP Server',
description:
'How to aggregate multiple MCP servers into a unified endpoint',
link: {
type: 'doc',
id: 'toolhive/guides-vmcp/index',
},
items: [
'toolhive/guides-vmcp/intro',
'toolhive/guides-vmcp/quickstart',
'toolhive/guides-vmcp/configuration',
'toolhive/guides-vmcp/backend-discovery',
'toolhive/guides-vmcp/authentication',
'toolhive/guides-vmcp/tool-aggregation',
'toolhive/guides-vmcp/composite-tools',
'toolhive/guides-vmcp/optimizer',
'toolhive/guides-vmcp/failure-handling',
'toolhive/guides-vmcp/telemetry-and-metrics',
'toolhive/guides-vmcp/audit-logging',
'toolhive/guides-vmcp/scaling-and-performance',
],
},
{
type: 'category',
label: 'Registry Server',
description:
'How to deploy and use the ToolHive Registry server to discover and access MCP servers and skills',
link: {
type: 'doc',
id: 'toolhive/guides-registry/index',
},
items: [
'toolhive/guides-registry/intro',
'toolhive/guides-registry/deployment',
'toolhive/guides-registry/deploy-operator',
'toolhive/guides-registry/deploy-manual',
'toolhive/guides-registry/configuration',
'toolhive/guides-registry/authentication',
'toolhive/guides-registry/authorization',
'toolhive/guides-registry/database',
'toolhive/guides-registry/skills',
'toolhive/guides-registry/telemetry-metrics',
'toolhive/reference/registry-api',
'toolhive/reference/registry-schema-upstream',
'toolhive/reference/registry-schema-toolhive',
],
},
{
type: 'category',
label: 'Concepts',
description: 'Core concepts and architecture of ToolHive and MCP',
link: {
type: 'generated-index',
slug: 'toolhive/concepts',
description:
'Learn about the key concepts behind ToolHive and the Model Context Protocol (MCP).',
},
items: [
'toolhive/concepts/mcp-primer',
'toolhive/concepts/groups',
'toolhive/concepts/tool-optimization',
'toolhive/concepts/registry-criteria',
'toolhive/concepts/observability',
'toolhive/concepts/auth-framework',
'toolhive/concepts/cedar-policies',
'toolhive/concepts/backend-auth',
'toolhive/concepts/embedded-auth-server',
'toolhive/concepts/vmcp',
'toolhive/concepts/skills',
],
},
{
type: 'category',
label: 'Integrations',
description: 'Connect ToolHive with third-party tools and services',
link: {
type: 'generated-index',
slug: 'toolhive/integrations',
description:
'Guides for integrating ToolHive with third-party tools and services like OpenTelemetry, HashiCorp Vault, and ngrok.',
},
items: [
'toolhive/integrations/opentelemetry',
'toolhive/integrations/vault',
'toolhive/integrations/aws-sts',
'toolhive/integrations/ingress-ngrok',
'toolhive/integrations/okta',
],
},
{
type: 'category',
label: 'Tutorials',
description: 'End-to-end tutorials covering multiple ToolHive components',
link: {
type: 'generated-index',
slug: 'toolhive/tutorials',
description:
'End-to-end tutorials that span multiple ToolHive components.',
},
items: [
'toolhive/tutorials/custom-registry',
'toolhive/tutorials/mcp-optimizer',
],
},
{
type: 'category',
label: 'MCP server guides',
description:
'How to configure and use MCP servers for different use cases',
link: {
type: 'generated-index',
slug: 'toolhive/guides-mcp',
title: 'MCP server usage guides',
description:
'These guides provide step-by-step instructions for using various MCP servers with ToolHive. They cover everything from installation to advanced configuration options.',
},
items: [{ type: 'autogenerated', dirName: 'toolhive/guides-mcp' }],
},
'toolhive/reference/client-compatibility',
'toolhive/reference/index',
'toolhive/reference/authz-policy-reference',
'toolhive/faq',
'toolhive/enterprise',
'toolhive/support',
'toolhive/contributing',
],
};
export default sidebars;