Skip to content

Commit 6db69a0

Browse files
committed
chore: add smithery.yaml configuration for mcp registry
1 parent 3a1f37a commit 6db69a0

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

smithery.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Smithery configuration file
2+
# See https://smithery.ai/docs for more information
3+
4+
runtime: node
5+
6+
startCommand:
7+
type: stdio
8+
9+
configSchema:
10+
type: object
11+
properties:
12+
posecodeBaseUrl:
13+
type: string
14+
description: "Optional custom base URL for the Posecode playground (defaults to https://www.posecode.org/play)"
15+
16+
commandFunction: |-
17+
(config) => ({
18+
command: 'npx',
19+
args: ['-y', 'posecode-mcp'],
20+
env: {
21+
POSECODE_BASE_URL: config.posecodeBaseUrl || ''
22+
}
23+
})
24+
25+
exampleConfig:
26+
posecodeBaseUrl: "https://www.posecode.org/play"

0 commit comments

Comments
 (0)