Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Daniel Chalef
26a19eeeb3 feat: add smithery.yaml configuration for MCP server 2025-05-06 15:12:56 -07:00

27
mcp_server/smithery.yaml Normal file
View file

@ -0,0 +1,27 @@
startCommand:
type: stdio
configSchema:
type: object
required:
- openaiApiKey
- groupId
properties:
openaiApiKey:
type: string
description: Your OpenAI API key.
groupId:
type: string
description: The group ID to namespace the graph. An arbitrary string.
commandFunction: |
(config) => ({
command: 'uv',
args: [
'run',
'graphiti_mcp_server.py',
'--group-id',
config.groupId
],
env: {
OPENAI_API_KEY: config.openaiApiKey
}
})