Skip to content

Commit db9e480

Browse files
committed
chore: make smithery work
1 parent de1a8b3 commit db9e480

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ COPY . .
1515
RUN npm run build
1616

1717
# Command will be provided by smithery.yaml
18-
CMD ["node", "build/index.js"]
18+
CMD ["node", "build/index.js", "--transport", "streamable"]

smithery.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22
# Smithery.ai configuration
33
startCommand:
4-
type: stdio
4+
type: http
55
configSchema:
66
# JSON Schema defining the configuration options for the MCP.
77
type: object
88
properties: {}
99
commandFunction:
1010
# A function that produces the CLI command to start the MCP on stdio.
1111
|-
12-
(config) => ({ command: 'node', args: ['./build/index.js'] })
13-
exampleConfig: {}
12+
(config) => ({ command: 'node', args: ['./build/index.js', '--transport', 'streamable'] })
13+
exampleConfig: {}

0 commit comments

Comments
 (0)