JSON Database
0
Provides a minimalist database server for JSON data with both REST and Model Context Protocol (MCP) APIs.
关于
This tool offers a lightweight and versatile server for managing JSON data, storing it persistently in a single `db.json` file. It provides both a traditional REST API for standard CRUD operations and integrates as a Model Context Protocol (MCP) server, allowing AI assistants like GitHub Copilot (Chat) and Gemini CLI to interact with your data programmatically. Its design emphasizes simplicity, atomic writes for data integrity, and thread-safety for single-process deployments, making it ideal for local development or simple data storage needs.
主要功能
- Shared core logic for both MCP tools and REST
- 0 GitHub stars
- Works with VS Code Copilot (Chat) and Gemini CLI as an MCP server
- Thread-safe in a single-process server using a lock
- Simple JSON-file database with atomic writes
- Supports HTTP (recommended) and SSE (optional) transports
使用案例
- Storing and managing simple JSON collections locally for applications or scripts
- Enabling AI assistants to interact with structured data through a defined protocol
- Quickly setting up a lightweight backend for development, prototyping, or mock APIs