FileMaker MCP Server
Dynamically exposes FileMaker scripts as MCP tools, providing a web interface and HTTP+SSE endpoint for integration with Claude.
README
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
Setup
Local Development
-
Clone the repository:
git clone https://github.com/mw777eds/filemaker_mcp_hosted.git cd filemaker_mcp_hosted -
Create a virtual environment:
python3 -m venv venv source venv/bin/activate -
Install dependencies:
pip install -r requirements.txt -
Configure 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 -d -
Using 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/activate -
Run the server script:
python gradio_mcp_server.py
Production (Docker)
docker-compose up -d
Accessing 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.py -
Note the server URL from the logs: Look for:
🔨 MCP server (using SSE) running at: http://127.0.0.1:XXXX/gradio_api/mcp/sse -
Add 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
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.
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.
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.
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.