filemaker-mcp
Enables AI assistants to query, analyze, and discover FileMaker database schemas via OData v4, with pandas-powered analytics for efficient data summaries.
README
filemaker-mcp
Connect Claude (or any MCP client) to a FileMaker database — read-only queries, schema discovery, and pandas-powered analytics.
What It Does
filemaker-mcp is an MCP server that gives AI assistants live access to your FileMaker data via OData v4. Load it in Claude Desktop or Claude Code and ask questions about your data in plain English.
Tools provided:
fm_query_records— Search and filter records with OData expressionsfm_get_record— Fetch a single record by primary keyfm_count_records— Count records with optional filtersfm_list_tables— List available tablesfm_get_schema— Discover field names, types, and keysfm_load_dataset— Pull records into memory for analyticsfm_analyze— Run groupby/sum/count/mean/min/max on loaded datafm_list_datasets— See what datasets are loaded
Quick Start
Prerequisites
- Python 3.12+
- uv package manager
- FileMaker Server with OData v4 enabled
- An FM account with
fmodataextended privilege
Install
git clone https://github.com/nietsneuah/filemaker-mcp.git
cd filemaker-mcp
cp .env.example .env
# Edit .env with your FileMaker server details
uv sync
Configure Claude Desktop
Add to your Claude Desktop MCP config
(~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"filemaker": {
"command": "uv",
"args": ["run", "--directory", "/path/to/filemaker-mcp", "filemaker-mcp"],
"env": {
"FM_HOST": "your-server.example.com",
"FM_DATABASE": "your_database",
"FM_USERNAME": "mcp_agent",
"FM_PASSWORD": "your_password"
}
}
}
}
Run
uv run filemaker-mcp
Schema Discovery
On startup, the server auto-discovers your tables from the OData service
document. For richer schema (field types, primary keys, tiers), install the
optional GetTableDDL FileMaker script — see docs/FM_ACCOUNT_SETUP.md.
Analytics
For reports and summaries, use the analytics tools instead of raw queries:
fm_load_dataset— Fetch records into a pandas DataFrame (auto-paginates)fm_analyze— Run aggregations instantly (no additional FM round trips)
This returns ~200 tokens instead of ~400K for raw records — much more efficient for dashboards and trend analysis.
Documentation
- Architecture — System design and security model
- FM Account Setup — FileMaker privilege configuration
- Tool Reference — Detailed parameter docs
License
GPL-3.0 — see LICENSE
Author
Doug Hauenstein / FM Rug Software
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.