FileMaker MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| FM_SERVER | Yes | FileMaker サーバー URL(HTTPS必須) | |
| LOG_LEVEL | No | ログレベル(debug, info, warn, error) | warn |
| FM_DATABASE | Yes | データベース名 | |
| FM_PASSWORD | Yes | パスワード | |
| FM_USERNAME | Yes | ユーザー名 | |
| FM_SSL_VERIFY | No | SSL 証明書検証(開発環境でのみ`false`可) | true |
| FM_API_VERSION | No | Data API バージョン | vLatest |
| FM_SESSION_TIMEOUT | No | セッションタイムアウト(秒) | 840 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| fm_loginA | FileMakerサーバーにログインしてセッションを確立します。環境変数から認証情報を読み込む場合はパラメータを省略できます。 |
| fm_logoutB | 現在のセッションを終了します。 |
| fm_validate_sessionC | セッションが有効かどうかを確認します。 |
| fm_get_layoutsB | データベース内のすべてのレイアウト一覧を取得します。 |
| fm_get_layout_metadataC | 指定されたレイアウトのフィールド定義、ポータル情報、値一覧を取得します。 |
| fm_get_scriptsB | データベース内のすべてのスクリプト一覧を取得します。 |
| fm_list_value_listsC | 指定されたレイアウトで利用可能な値一覧(Value Lists)を取得します。フィールドに設定されたドロップダウン選択肢などを確認できます。 |
| fm_get_recordsC | 指定されたレイアウトからレコードを取得します(ページング対応)。 |
| fm_get_record_by_idC | 指定されたレコードIDのレコードを取得します。 |
| fm_find_recordsC | 検索条件に一致するレコードを検索します。 |
| fm_get_record_countA | 指定されたレイアウトの総レコード数を取得します。レコードデータは取得せず、カウントのみを効率的に返します。 |
| fm_export_database_metadataA | データベースの構造情報(レイアウト、フィールド、スクリプト、値一覧)を集約してエクスポートします。注意: FileMaker Data APIの制約により、真のDDR(Database Design Report)ではありません。リレーションシップ定義、計算式、スクリプト内容は取得できません。 |
| fm_infer_relationshipsA | 指定されたレイアウトのポータルとフィールド名パターンからリレーションシップを推測します。重要: すべての結果は「推測」であり、実際のFileMakerリレーションシップ定義とは異なる可能性があります。信頼度(confidence)を必ず確認してください。 |
| fm_analyze_portal_dataC | 指定されたレイアウト内のポータル構造を詳細に分析します。各ポータルのフィールド定義、推測される関連テーブル名、サンプルデータ(オプション)を取得できます。この機能はData APIで完全にサポートされています。 |
| fm_global_search_dataA | 複数のレイアウトを横断してデータを検索します。各レイアウトのテキストフィールドに対してOR検索を実行し、結果を集約します。注意: 大量のレイアウトを指定するとパフォーマンスに影響します。 |
| fm_global_search_fieldsB | 全レイアウトを横断してフィールドを検索します。フィールド名のパターンやフィールドタイプでフィルタリングできます。データベース構造の調査やフィールド命名規則の確認に便利です。 |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 16 tools
Most tools have distinct purposes, but there is some overlap between fm_get_layout_metadata and fm_analyze_portal_data (both analyze layout structure), and between fm_find_records and fm_global_search_data (both search records). Descriptions help differentiate them, but an agent might occasionally misselect.
All tools follow a consistent fm_verb_noun naming pattern, using snake_case throughout. The verbs are clear and descriptive (e.g., get, list, analyze, export), making the set predictable and easy to understand.
16 tools is slightly high but reasonable for a FileMaker database management server, covering metadata, data operations, search, and session management. It feels comprehensive without being overwhelming, though some tools could potentially be consolidated.
The toolset provides complete coverage for FileMaker Data API interactions, including session management (login/logout/validate), metadata retrieval (layouts, fields, scripts, value lists), data operations (CRUD with find/get/count), and advanced analysis (portal data, relationships, global search). No obvious gaps exist for the stated domain.