mcp-server-filemaker
Provides tools for managing FileMaker databases via OData v4 API, including CRUD operations, script execution, schema introspection, batch requests, and test/validation tools.
Click on "Install 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., "@mcp-server-filemakerList customers from New York"
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.
mcp-server-filemaker
MCP server that gives AI assistants direct access to FileMaker databases via OData v4 API.
Works with any MCP-compatible client: Claude Code, Claude Desktop, Cursor, Windsurf, Continue.dev, Zed, and others.
Runs on-premise — no cloud proxy, no Claris ID required.
MCP Client ──stdio──▶ MCP Server (Node.js) ──OData v4 / HTTPS──▶ FileMaker ServerFeatures
20 tools — CRUD, scripts, schema introspection, batch requests, test & validation
OData v4 — direct table access (not layout-based like the Data API)
Data API bridge — set global fields and run scripts with session context
Tool restrictions — disable dangerous tools per database via
FM_DISABLED_TOOLSZero dependencies beyond the MCP SDK and Zod
Related MCP server: mcp-server-firebird
Prerequisites
FileMaker Server with OData access enabled (Admin Console → Connectors → OData)
A dedicated API user with Extended Privilege
fmodataFor Data API tools (
fm_set_globals,fm_run_script_with_globals): alsofmrestHTTPS with a valid certificate — self-signed certificates are not supported
Installation
git clone https://github.com/JoergKoester/mcp-server-filemaker.git
cd mcp-server-filemaker
npm install
npm run buildConfiguration
Add the server to your MCP client config. For Claude Code and Claude Desktop, edit ~/.mcp.json:
{
"mcpServers": {
"filemaker": {
"command": "node",
"args": ["/absolute/path/to/mcp-server-filemaker/dist/index.js"],
"env": {
"FM_HOST": "https://your-filemaker-server.example.com",
"FM_DATABASE": "YourDatabase",
"FM_USERNAME": "api_user",
"FM_PASSWORD": "your_password",
"FM_ODATA_VERSION": "v4",
"FM_TIMEOUT_MS": "15000",
"FM_RETRY_COUNT": "2",
"FM_DISABLED_TOOLS": "",
"FM_DEBUG": "false"
}
}
}
}Environment Variables
Variable | Required | Description |
| Yes | FileMaker Server URL with protocol, e.g. |
| Yes | Database name |
| Yes | API user (needs Extended Privilege |
| Yes | Password |
| No | OData version, default |
| No | HTTP request timeout in milliseconds, default |
| No | Retry attempts on transient failures (429/503), default |
| No | Comma-separated tool names to disable |
| No |
|
Multiple Databases
Run one server instance per database:
{
"mcpServers": {
"filemaker-app": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": {
"FM_HOST": "https://fms.example.com",
"FM_DATABASE": "MyApp",
"FM_USERNAME": "api_user",
"FM_PASSWORD": "secret",
"FM_DISABLED_TOOLS": "fm_create_table,fm_add_field"
}
},
"filemaker-data": {
"command": "node",
"args": ["/path/to/dist/index.js"],
"env": {
"FM_HOST": "https://fms.example.com",
"FM_DATABASE": "MyData",
"FM_USERNAME": "api_user",
"FM_PASSWORD": "secret",
"FM_DISABLED_TOOLS": "fm_create_table,fm_add_field,fm_delete_record"
}
}
}
}Tools
Structure & Metadata
Tool | Description |
| List all tables |
| Full EDMX schema (fields, types, relationships) |
| Tables overview or field details with native FM types |
Data Access
Tool | Description |
| Query records with |
| Single record by ROWID |
| Create a new record |
| Update record (PATCH) |
| Delete record by ROWID |
Scripts & Schema
Tool | Description |
| Execute a FileMaker script |
| Create a new table |
| Add a field (SQL-style types: |
| Batch multiple OData requests in one HTTP call |
Data API (Session Context)
Tool | Description |
| Set global fields (Login → PATCH /globals → Logout) |
| Set globals + run script in one session |
Test & Validation
Tool | Description |
| Create a tagged test record |
| Delete all records matching a test tag |
| Validate field values (PASS/FAIL with diff) |
| Assert record count for a query |
| Run script and check result code |
Tool Restrictions
Disable tools per database instance via FM_DISABLED_TOOLS:
FM_DISABLED_TOOLS=fm_create_table,fm_add_field,fm_delete_recordDisabled tools are hidden from the tool list and blocked at execution (double protection)
Server startup shows
Tools: 17/20and lists disabled toolsRecommended: always disable
fm_create_tableandfm_add_fieldon production databases
Architecture
4 files in src/:
File | Responsibility |
| Entry point, env config, STDIO transport, tool routing |
| HTTP client for all OData v4 requests (CRUD, scripts, schema, batch) |
| HTTP client for FileMaker Data API (globals, session-scoped scripts) |
| MCP tool definitions (Zod schemas), handler logic, test tools |
The server is a thin proxy — no caching. Each OData request uses Basic Auth; Data API tools manage their own session (login → action → logout). The OData client retries transient failures (HTTP 429/503) with exponential backoff; the Data API client currently does not retry.
Security Notes
stdio transport has no authentication of its own — anyone who can start the process has full access to the configured FileMaker database with the rights of the API user. Credentials live in your MCP client config (e.g.
~/.mcp.json) and are protected by filesystem permissions only. In multi-user environments, secure the server process and config file accordingly.Startup logs to stderr include the configured host, database, and username (no password, no API keys). Redirect stderr appropriately if that is sensitive.
FM_DEBUG=truelogs the full arguments of every tool call to stderr, which may contain record data from your FileMaker database. Keep this off in production.OData
$filtervalues passed tofm_queryare placed verbatim into the query string. Escape single quotes ('→'') in string literals yourself, and be aware that values containing URL-reserved characters (#,+,%) can corrupt the request.
Development
npm run dev # Run with tsx (no build needed)
npm run watch # Watch mode
npm run build # Compile TypeScript → dist/
npm start # Run compiled versionOData API Reference
Operation | Method | Endpoint |
Service Document | GET |
|
Metadata (EDMX) | GET |
|
Read records | GET |
|
Create record | POST |
|
Update record | PATCH |
|
Delete record | DELETE |
|
Run script | POST |
|
Create table | POST |
|
Add field | PATCH |
|
Batch | POST |
|
AI-generated experimental project
This MCP server was generated almost entirely with the assistance of a generative AI system and has only undergone limited human review so far. It is provided as is, without any guarantees of correctness, security, or fitness for a particular purpose. Use it at your own risk and always review and test the code thoroughly before using it in production.
The code in this repository is licensed under the MIT License. By using it, you agree that the authors and copyright holders are not liable for any claim, damages, or other liability arising from its use, as stated in the license.
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JoergKoester/mcp-server-filemaker'
If you have feedback or need assistance with the MCP directory API, please join our Discord server