Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"mcp-knowledge-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server built with Spring Boot that provides intelligent access to a knowledge store with rich metadata capabilities for efficient file discovery and large file handling.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in productivity / developer-tools
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
Read, write, and manage files on the local filesystem
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Knowledge Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server built with Spring Boot that provides intelligent access to a knowledge store with rich metadata capabilities for efficient file discovery and large file handling.
This server intelligently handles the challenge of large files exceeding Claude's context window:
📋 See Dual Transport Guide for detailed setup
ws://localhost:8080/mcphttp://localhost:8080/api/knowledge/start-web-server.batstart-stdin-server.batClone or navigate to the project directory:
cd D:\mcp-knowledge-server
Build the project:
mvn clean install
Run the server:
mvn spring-boot:run
Or run the JAR directly:
java -jar target/mcp-knowledge-server-1.0.0.jar
Server will start on port 8080
Health Check:
curl http://localhost:8080/api/knowledge/health
List Files:
curl http://localhost:8080/api/knowledge/files
Upload a File:
curl -X POST -F "file=@your-file.txt" http://localhost:8080/api/knowledge/upload
ws://localhost:8080/mcp
list_files: List all files in the knowledge store
{
"jsonrpc": "2.0",
"id": "1",
"method": "tools/call",
"params": {
"name": "list_files",
"arguments": {}
}
}
read_file: Read the content of a specific file
{
"jsonrpc": "2.0",
"id": "2",
"method": "tools/call",
"params": {
"name": "read_file",
"arguments": {
"filename": "welcome.md"
}
}
}
search_files: Search for files containing specific text
{
"jsonrpc": "2.0",
"id": "3",
"method": "tools/call",
"params": {
"name": "search_files",
"arguments": {
"query": "your search term"
}
}
}
get_file_info: Get metadata about a file
{
"jsonrpc": "2.0",
"id": "4",
"method": "tools/call",
"params": {
"name": "get_file_info",
"arguments": {
"filename": "welcome.md"
}
}
}
write_file: Write content to a file
{
"jsonrpc": "2.0",
"id": "5",
"method": "tools/call",
"params": {