23 lines
484 B
JSON
23 lines
484 B
JSON
{
|
|
"name": "rag-retrieve-only",
|
|
"description": "Only provides rag_retrieve. table_rag_retrieve and local file retrieval are disabled.",
|
|
"hooks": {
|
|
"PrePrompt": [
|
|
{
|
|
"type": "command",
|
|
"command": "python hooks/pre_prompt.py"
|
|
}
|
|
]
|
|
},
|
|
"mcpServers": {
|
|
"rag_retrieve": {
|
|
"transport": "stdio",
|
|
"command": "python",
|
|
"args": [
|
|
"./skills/rag-retrieve-only/rag_retrieve_server.py",
|
|
"{bot_id}"
|
|
]
|
|
}
|
|
}
|
|
}
|