filemaker_mcp_local
filemaker_mcp_local is a Python script designed to assist in the local management of FileMaker databases. It provides features to automate data manipulation and management, allowing developers to streamline their workflow in a FileMaker environment. The script supports basic operations such as importing and exporting data, executing queries, and more.
GitHub Stars
1
User Rating
Not Rated
Favorites
0
Views
38
Forks
1
Issues
0
FileMaker MCP Server
This project implements a Model Context Protocol (MCP) server that dynamically exposes FileMaker scripts as tools. It uses Gradio to provide a user interface for interacting with these tools.
Setup
Clone the repository:
git clone https://github.com/mw777eds/filemaker_mcp_local/ cd filemaker_mcp_localCreate 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.
Running the Server
Activate the virtual environment (if not already active):
source venv/bin/activateRun the server script:
python gradio_mcp_server.py
This will start both the MCP server (listening on stdin/stdout for the MCP protocol) and a Gradio server (typically on port 7860) providing a web UI for the dynamically created tools.