Compare commits
1 commit
main
...
feat/smith
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
26a19eeeb3 |
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