Update server.json
This commit is contained in:
parent
727f10a9a8
commit
2b69c4565d
1 changed files with 40 additions and 38 deletions
78
server.json
78
server.json
|
|
@ -1,42 +1,44 @@
|
||||||
{
|
{
|
||||||
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
|
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
|
||||||
"name": "io.github.ggozad/haiku-rag",
|
"name": "io.github.ggozad/haiku-rag",
|
||||||
"version": "{{VERSION}}",
|
"version": "{{VERSION}}",
|
||||||
"description": "Opinionated agentic RAG powered by LanceDB, Pydantic AI, and Docling",
|
"description": "Opinionated agentic RAG powered by LanceDB, Pydantic AI, and Docling",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "https://github.com/ggozad/haiku.rag",
|
"url": "https://github.com/ggozad/haiku.rag",
|
||||||
"source": "github"
|
"source": "github"
|
||||||
},
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"rag",
|
"rag",
|
||||||
"lancedb",
|
"lancedb",
|
||||||
"vector-database",
|
"vector-database",
|
||||||
"embeddings",
|
"embeddings",
|
||||||
"search",
|
"search",
|
||||||
"qa",
|
"qa",
|
||||||
"research"
|
"research",
|
||||||
],
|
"docling",
|
||||||
"packages": [
|
"pydantic-ai"
|
||||||
|
],
|
||||||
|
"packages": [
|
||||||
|
{
|
||||||
|
"registryType": "pypi",
|
||||||
|
"registryBaseUrl": "https://pypi.org",
|
||||||
|
"identifier": "haiku-rag",
|
||||||
|
"version": "{{VERSION}}",
|
||||||
|
"runtimeHint": "uvx",
|
||||||
|
"runtimeArguments": [
|
||||||
{
|
{
|
||||||
"registryType": "pypi",
|
"type": "positional",
|
||||||
"registryBaseUrl": "https://pypi.org",
|
"value": "serve"
|
||||||
"identifier": "haiku-rag",
|
},
|
||||||
"version": "{{VERSION}}",
|
{
|
||||||
"runtimeHint": "uvx",
|
"type": "named",
|
||||||
"runtimeArguments": [
|
"name": "--mcp"
|
||||||
{
|
|
||||||
"type": "positional",
|
|
||||||
"value": "serve"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "named",
|
|
||||||
"name": "--mcp"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"transport": {
|
|
||||||
"type": "stdio"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
"transport": {
|
||||||
|
"type": "stdio"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue