- Home
- MCP servers
- Fireproof JSON Document
Fireproof JSON Document
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mcp-mirror-fireproof-storage_mcp-database-server": {
"command": "/path/to/fireproof-mcp/build/index.js",
"args": []
}
}
}This MCP server provides a lightweight JSON document store with Create, Read, Update, and Delete operations, plus the ability to query documents by any field. It’s designed to plug into AI systems and other clients, letting you store and retrieve structured data efficiently.
How to use
You connect to this server from an MCP client to perform CRUD operations on documents and to query documents sorted by a chosen field. Use it to store structured JSON objects and retrieve them with flexible queries. Start the server through its MCP configuration so your client can reach it via the defined command, then send requests to Create, Read, Update, Delete, or Query as needed. You can organize documents by fields and retrieve ordered results to match your workflow.
How to install
Prerequisites: you need Node.js and npm. Make sure Node and npm are installed and accessible on your system.
npm install
npm build
Run instructions for the MCP setup are provided in your MCP client configuration. The server is designed to be started by your MCP environment using the command shown in the configuration block below.
If you want to debug MCP server interactions locally, you can use the MCP Inspector tool. It is available as a package script and will provide a URL to access debugging tools in your browser.
npm run inspector
Additional notes
Configuration is provided via an MCP configuration that points to the server executable. Ensure your client’s MCP setup references the correct command path so the client can launch and communicate with the server.
Available tools
CRUD operations
Supports creating, reading, updating, and deleting documents in a JSON document store.
Query by fields
Allows querying documents with sorting by any field to retrieve ordered results.