Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/upstream-projects.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
projects:
- id: toolhive-registry-server
repo: stacklok/toolhive-registry-server
version: v1.4.11
version: v1.4.12
docs_paths:
- docs/toolhive/guides-registry
- docs/toolhive/concepts/registry-criteria.mdx
Expand Down
6 changes: 5 additions & 1 deletion docs/toolhive/guides-registry/configuration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ Kubernetes workload discovery watches for annotations on
[`MCPRemoteProxy`](../guides-k8s/remote-mcp-proxy.mdx), and
[`VirtualMCPServer`](../guides-vmcp/configuration.mdx) resources.

```yaml {7-16}
```yaml {7-19}
apiVersion: toolhive.stacklok.dev/v1beta1
kind: MCPServer
metadata:
Expand All @@ -455,6 +455,8 @@ metadata:
toolhive.stacklok.dev/registry-url: 'https://mcp.example.com/servers/my-mcp-server'
toolhive.stacklok.dev/registry-description: |
Production MCP server for code analysis
toolhive.stacklok.dev/registry-icon: 'https://mcp.example.com/icons/code-analysis.svg'
toolhive.stacklok.dev/registry-category: 'developer-tools'
toolhive.stacklok.dev/tool-definitions:
'[{"name":"analyze_code","description":"Analyze code for potential
issues","inputSchema":{"type":"object","properties":{"file":{"type":"string","description":"Path
Expand All @@ -471,6 +473,8 @@ spec:
| `toolhive.stacklok.dev/registry-url` | Yes | The external endpoint URL for this server |
| `toolhive.stacklok.dev/registry-description` | Yes | Description text displayed in registry listings |
| `toolhive.stacklok.dev/registry-title` | No | Human-friendly display name for the registry entry (overrides the generated name) |
| `toolhive.stacklok.dev/registry-icon` | No | Icon URL displayed alongside the entry in registry listings |
| `toolhive.stacklok.dev/registry-category` | No | Category label used to group and filter this entry (added as a ToolHive tag) |
| `toolhive.stacklok.dev/tools` | No | JSON array of tool name strings (e.g., `["get_weather","get_forecast"]`) |
| `toolhive.stacklok.dev/tool-definitions` | No | JSON array of tool definitions with MCP tool metadata (name, description, schema) |
| `toolhive.stacklok.dev/authz-claims` | No | JSON object of authorization claims for per-entry visibility control |
Expand Down