MCP KnowledgeBase Server
@mbcrawfo
MCP KnowledgeBase Server について
Model Context Protocol (MCP) server allowing LLMs to store and search knowledge in a SQLite database
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"knowledgebase": {
"command": "docker",
"args": [
"run",
"--interactive",
"--rm",
"--volume",
"knowledgebase:/db",
"mbcrawfo/knowledge-base-server"
]
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is MCP KnowledgeBase Server?
MCP KnowledgeBase Server is a Model Context Protocol (MCP) server that allows LLMs to store memories during a conversation and search them later. Memories are stored in a SQLite database, and its full text search features power the memory search.
How to use MCP KnowledgeBase Server?
Deploy via Docker with a persistent volume or run locally with the .NET 9 SDK. Configure the server in claude_desktop_config.json using the provided examples. Control the database location with the environment variables DATABASE_NAME or DATABASE_PATH. A default "General Memory Usage" prompt is included to guide the LLM.
Key features of MCP KnowledgeBase Server
- Store memories during LLM conversations
- Search memories using SQLite full text search
- Docker deployment with persistent volume support
- Local deployment with .NET 9 SDK
- Custom database location via environment variables
- Includes a default memory usage prompt for LLMs
Use cases of MCP KnowledgeBase Server
- Storing user preferences across conversations for personalized AI responses
- Building a searchable long-term memory for AI assistants
- Enabling context-aware recall of past interactions
FAQ from MCP KnowledgeBase Server
What are the runtime requirements for MCP KnowledgeBase Server?
For local deployment, the .NET 9 SDK is required. For containerized deployment, Docker is needed.
How can I control where the database is stored?
Set DATABASE_NAME to use a custom filename in the default location, or set DATABASE_PATH to specify the full path to the database file. Using DATABASE_PATH ignores DATABASE_NAME.
What database does MCP KnowledgeBase Server use?
It uses SQLite with full text search capabilities.
Can I customize the prompt given to the LLM?
The server includes a "General Memory Usage" prompt by default, but you can replace it with a custom prompt to be more specific to your usage.
How do I persist data when using Docker?
Create a Docker volume named knowledgebase and mount it to /db in the container. For a custom database file, pass the DATABASE_PATH environment variable via --env.
「データベース」の他のコンテンツ
MotherDuck's DuckDB MCP Server
motherduckdbLocal MCP server for DuckDB and MotherDuck
Sail MCP Server for Spark SQL
lakehqDrop-in Apache Spark replacement written in Rust, unifying batch processing, stream processing, and compute-intensive AI workloads.
ClickHouse MCP Server
ClickHouseConnect ClickHouse to your AI assistants.
Database Gateway
centralmindUniversal MCP-Server for your Databases optimized for LLMs and AI-Agents.

PostgreSQL
modelcontextprotocolModel Context Protocol Servers
コメント