FileMaker MCP Server
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., "@FileMaker MCP Serverrun the 'Customer Balance' script for account 456"
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.
FileMaker MCP Server
This project implements a Model Context Protocol (MCP) server that dynamically exposes FileMaker scripts as tools. It uses Gradio with native MCP support to provide both a web interface and HTTP+SSE MCP endpoint.
Features
Dynamic Tool Discovery: Automatically discovers FileMaker scripts and exposes them as MCP tools
Dual Interface: Provides both web UI (Gradio) and MCP API (HTTP+SSE)
Docker Support: Easy deployment with Docker and docker-compose
Web Accessible: Claude can connect via HTTP instead of requiring local setup
Related MCP server: mcp-connect
Setup
Local Development
Clone the repository:
git clone https://github.com/mw777eds/filemaker_mcp_hosted.git cd filemaker_mcp_hostedCreate a virtual environment:
python3 -m venv venv source venv/bin/activateInstall dependencies:
pip install -r requirements.txtConfigure Environment Variables:
Create a
.envfile in the project root with the following variables:FM_USERNAME=your_filemaker_username FM_PASSWORD=your_filemaker_password FM_HOST=your_filemaker_host FM_DATABASE=your_filemaker_database FM_LAYOUT=your_filemaker_layoutReplace the placeholder values with your actual FileMaker credentials and database details.
Docker Deployment
Using docker-compose (recommended):
docker-compose up -dUsing Docker directly:
docker build -t filemaker-mcp . docker run -p 7860:7860 --env-file .env filemaker-mcp
Running the Server
Local Development
Activate the virtual environment (if not already active):
source venv/bin/activateRun the server script:
python gradio_mcp_server.py
Production (Docker)
docker-compose up -dAccessing the Server
Web Interface: http://localhost:7860
MCP Endpoint: http://localhost:7860/gradio_api/mcp/sse
API Schema: http://localhost:7860/gradio_api/mcp/schema
Claude Configuration
For HTTP+SSE (Recommended)
Start the MCP server first:
python gradio_mcp_server.pyNote the server URL from the logs: Look for:
🔨 MCP server (using SSE) running at: http://127.0.0.1:XXXX/gradio_api/mcp/sseAdd to your Claude Desktop configuration:
{ "mcpServers": { "filemaker-mcp": { "command": "npx", "args": [ "mcp-remote", "http://127.0.0.1:7860/gradio_api/mcp/sse" ] } } }Restart Claude Desktop to pick up the new configuration.
For Local Development (stdio - Legacy)
{
"mcpServers": {
"filemaker-mcp": {
"command": "/path/to/your/venv/bin/python3",
"args": ["/path/to/gradio_mcp_server.py"],
"cwd": "/path/to/project",
"transport": "stdio"
}
}
}Troubleshooting Connection Issues
Ensure the server is running before starting Claude
Check that the port number in your config matches the server logs
Verify no firewall is blocking the connection
Look for error messages in both server and Claude logs
Architecture
FileMaker Database → REST API → Gradio Functions → MCP Tools (HTTP+SSE)
↓
Web Interface (Gradio UI)The server:
Connects to FileMaker via REST API
Discovers available scripts dynamically
Creates Gradio-compatible functions for each script
Exposes both web UI and MCP endpoint simultaneously
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceAn MCP server that transforms Claude-style skills and resources into callable tools for any MCP-compatible agent or client. It automatically discovers, exposes, and executes scripts from skills organized in local directories or packaged archives.
- AlicenseNot gradedqualityBmaintenanceA dead simple MCP server for exposing your app functions to AI agents like Claude Desktop.445MIT
- AlicenseAqualityBmaintenanceEnables dynamic creation and execution of custom tools/functions in multiple programming languages at runtime, exposing them to MCP clients like Claude.41043MIT
- AlicenseNot gradedqualityAmaintenanceExposes Agentweaver runs and outcomes as MCP tools for Claude Desktop and compatible clients.295MIT
Related MCP Connectors
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Security-first WordPress MCP server. 129 tools for Claude, ChatGPT, Gemini. Free on wp.org.
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mw777eds/filemaker_mcp_hosted'
If you have feedback or need assistance with the MCP directory API, please join our Discord server