23 lines
481 B
JSON
23 lines
481 B
JSON
{
|
|
"name": "rag-retrieve",
|
|
"description": "Provides RAG and table RAG retrieval tools through a PrePrompt hook and MCP server.",
|
|
"hooks": {
|
|
"PrePrompt": [
|
|
{
|
|
"type": "command",
|
|
"command": "python hooks/pre_prompt.py"
|
|
}
|
|
]
|
|
},
|
|
"mcpServers": {
|
|
"rag_retrieve": {
|
|
"transport": "stdio",
|
|
"command": "python",
|
|
"args": [
|
|
"./skills_autoload/rag-retrieve/rag_retrieve_server.py",
|
|
"{bot_id}"
|
|
]
|
|
}
|
|
}
|
|
}
|