-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsmithery.yaml
More file actions
21 lines (20 loc) · 797 Bytes
/
smithery.yaml
File metadata and controls
21 lines (20 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
# HTTP transport — connects to a self-hosted LightCMS instance's MCP endpoint.
# Each user provides their own server URL and API key.
startCommand:
type: http
configSchema:
type: object
required:
- serverUrl
- apiKey
properties:
serverUrl:
type: string
description: URL of your LightCMS instance (e.g. https://example.com or http://localhost:8082)
apiKey:
type: string
description: API key for authentication. Create one in the admin panel at /cm → Settings → API Keys.
urlFunction:
|-
(config) => ({ url: config.serverUrl.replace(/\/$/, '') + '/mcp', headers: { 'Authorization': 'Bearer ' + config.apiKey } })