This commit is contained in:
Daniel Chalef 2025-11-27 02:20:25 +01:00 committed by GitHub
commit 54e5dd3a64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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
}
})