Skip to main content
Glama
ayushshah31

Claude FileMaker MCP Server

by ayushshah31

fm_create_record

Create a new record in a FileMaker database by specifying the target layout and field data, allowing immediate data entry into the system.

Instructions

Create a new record

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
layoutYesLayout name
databaseYesDatabase identifier
fieldDataYesField data for the new record

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

There are no annotations, so the description carries the full burden of behavioral disclosure. It only states that a record is created, with no mention of persistence, side effects, permissions, required context, or return behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence with no unnecessary words. While it is highly concise, it is also thin enough that it provides little beyond the tool name.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no annotations and no output schema, the description leaves out meaningful context such as how fieldData should be shaped, what happens after creation, and any error conditions. The schema covers parameter names but not usage context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the parameters are already fully documented. The description adds no additional meaning about database, layout, or fieldData beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb and resource ('Create a new record'), making the basic intent clear. It does not explicitly distinguish itself from sibling CRUD tools beyond the verb itself, but the action is unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is given about when to use this tool versus fm_update_record or fm_delete_record. The intended usage must be inferred entirely from the tool name and the create verb.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.