mcp-local-rag
"primitive" RAG-like web search model context protocol (MCP) server that runs locally. ✨ no APIs ✨
GitHub Stars
76
User Rating
Not Rated
Favorites
0
Views
21
Forks
15
Issues
3
Installation
Installation
Prerequisites
Please specify required software and versions:Installation Steps
1. Add MCP Server Configuration
Add the following configuration to your MCP server settings. #### Using uvxjson
{
"mcpServers": {
"mcp-local-rag":{
"command": "uvx",
"args": [
"--python=3.10",
"--from",
"git+https://github.com/nkapila6/mcp-local-rag",
"mcp-local-rag"
]
}
}
}
json
{
"mcpServers": {
"mcp-local-rag": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--init",
"-e",
"DOCKER_CONTAINER=true",
"ghcr.io/nkapila6/mcp-local-rag:latest"
]
}
}
}
2. Start the Server
Once the configuration is complete, start the MCP server. The specific command will vary based on the method you are using.Additional Resources
Backpropating daily in MS@CS at @gatech | open source contributor
25
Followers
51
Repositories
2
Gists
0
Total Contributions
The mcp-client-for-ollama is a simple yet powerful Python client designed for interacting with Model Context Protocol (MCP) servers using Ollama. This client enables local large language models (LLMs) to utilize tools effectively. It primarily facilitates communication with APIs, streamlining workflows and enhancing the capabilities of LLMs.
The Prospectio MCP API is a FastAPI-based application designed for lead prospecting, implementing the Model Context Protocol (MCP). It adheres to Clean Architecture principles, ensuring a clear separation of concerns across domain, application, and infrastructure layers. The project focuses on core business entities and logic, along with use cases and API routes, facilitating integration with external services.