KevoDB MCP Server
OfficialProvides an interface for AI agents to interact with KevoDB, a key-value database, enabling operations like basic key-value operations, range/prefix/suffix scans, transactions, batch operations, and database statistics retrieval.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@KevoDB MCP Serverget the value for key 'user:123:profile'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
KevoDB MCP Server
This project implements a MCP (Multimodal Communication Protocol) server for KevoDB, allowing AI agents to interact with KevoDB using a standardized API.
Features
Exposes KevoDB operations through MCP tools
Supports all core KevoDB functionality:
Basic key-value operations (get, put, delete)
Range, prefix, and suffix scans
Transactions
Batch operations
Database statistics
Simple string-based API with UTF-8 encoding
Related MCP server: Simple MCP Server
Prerequisites
Python 3.8+
Running KevoDB server (default: localhost:50051)
FastMCP library
Python-Kevo SDK
Installation
Install dependencies:
pip install fastmcp python-kevoEnsure KevoDB is running on localhost:50051 (or set the
KEVO_HOSTandKEVO_PORTenvironment variables to connect to a different endpoint)
Usage
Running the MCP Server
Start the MCP server:
python main.pyThis will launch the MCP server on http://localhost:9000/mcp
You can configure the KevoDB connection using environment variables:
KEVO_HOST: Hostname of the KevoDB server (default: "localhost")KEVO_PORT: Port of the KevoDB server (default: "50051")
Example:
KEVO_HOST=192.168.1.100 KEVO_PORT=5000 python main.pyUsing with AI Agents
AI agents that support MCP can connect to this server and use all exposed tools. The server provides the following tools:
Tool | Description |
| Connect to the KevoDB server |
| Get a value by key from KevoDB |
| Store a key-value pair in KevoDB |
| Delete a key-value pair from KevoDB |
| Scan keys in KevoDB with options |
| Perform multiple operations in a batch |
| Get database statistics |
| Begin a new transaction and return transaction ID |
| Commit a transaction by ID |
| Roll back a transaction by ID |
| Store a key-value pair within a transaction |
| Get a value by key within a transaction |
| Delete a key-value pair within a transaction |
| Close the KevoDB connection |
Integration with AI Applications
To use KevoDB with your AI application:
Start the KevoDB server
Start this MCP server
Configure your AI agent to connect to the MCP endpoint
The AI agent can now use all KevoDB operations through the MCP interface
License
This server cannot be deployed
Maintenance
Related MCP Connectors
Remote ChromaDB vector database MCP server with streamable HTTP transport
Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceA lightweight, fast MCP server that provides onchain capabilities for the LLMs and Agents.32 npm253MIT
- AlicenseNot gradedqualityDmaintenanceA lightweight Model Context Protocol server that provides an in-memory key-value store with get, set, delete, list, and clear operations for MCP-compatible AI assistants and clients.MIT
- AlicenseNot gradedqualityDmaintenanceA lightweight MCP server that provides persistent key-value storage for AI agents using SQLite and Bun. It enables agents to store, retrieve, and manage memories with optional JSON metadata for long-term context retention.3,245 npm-
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with KevoDB, a key-value database, through MCP tools for CRUD operations, transactions, and scans.MIT