# mcp-database-server

> MCP Server

This repository provides a demo server showcasing how to integrate a Fireproof database with the Model Context Protocol for connecting code and data to AI systems like Claude Desktop, implementing

## Overview

- **Category:** Database
- **Language:** JavaScript
- **Stars:** 31
- **Forks:** 4
- **Owner:** fireproof-storage
- **GitHub:** https://github.com/fireproof-storage/mcp-database-server
- **Created:** 2024-12-16T21:59:16+00:00
- **Updated:** 2025-03-25T04:04:38+00:00
- **Source:** https://model-context-protocol.com/servers/llm-tool-use-json-database-server

## Setup

## Setup

Install dependencies:

```bash
npm install
npm build
```

To use with Claude Desktop, add the server config:

On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
On Windows: `%APPDATA%/Claude/claude_desktop_config.json`

```json
{
  "mcpServers": {
    "fireproof": {
      "command": "/path/to/fireproof-mcp/build/index.js"
    }
  }
}
```

## Tools

## Available Tools

1.  JSON document store (with CRUD operations)
2.  Query documents (sorted by any field)
3.  MCP Inspector (for debugging)
