Merge 26a19eeeb3 into 3ce3962e4b
This commit is contained in:
commit
54e5dd3a64
1 changed files with 27 additions and 0 deletions
27
mcp_server/smithery.yaml
Normal file
27
mcp_server/smithery.yaml
Normal 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
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Reference in a new issue