Skip to content

Commit 1212668

Browse files
committed
feat: add smithery.yaml for Smithery registry publishing
Enables publishing to Smithery.ai MCP server registry. Configures stdio transport with uvx runtime and prompts for API key and URL. https://claude.ai/code/session_01LV2F6VAyLq2cZexnxSprkw
1 parent d5c1871 commit 1212668

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

smithery.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Smithery configuration file: https://smithery.ai/docs/build/project-config/smithery-yaml
2+
startCommand:
3+
type: stdio
4+
configSchema:
5+
type: object
6+
required:
7+
- outlineApiKey
8+
properties:
9+
outlineApiKey:
10+
type: string
11+
description: "Outline API key (Settings > API)"
12+
outlineApiUrl:
13+
type: string
14+
description: "Outline API URL for self-hosted instances"
15+
commandFunction: |-
16+
(config) => ({
17+
command: 'uvx',
18+
args: ['mcp-outline'],
19+
env: {
20+
OUTLINE_API_KEY: config.outlineApiKey,
21+
...(config.outlineApiUrl ? { OUTLINE_API_URL: config.outlineApiUrl } : {})
22+
}
23+
})

0 commit comments

Comments
 (0)