MCP for agents
The MCP server is part of the fmtr executable. It communicates through standard input and output. It does not open a network port or send meeting data to a hosted service. It is read-only: to create meetings, edit notes, or import and transcribe audio, use the CLI.
Configure a client
Section titled “Configure a client”{ "mcpServers": { "fmtr": { "command": "fmtr", "args": ["mcp"] } }}Use the absolute path to fmtr if the client cannot find it on PATH. Restart the client after changing its MCP configuration.
For a custom vault path:
{ "mcpServers": { "fmtr": { "command": "fmtr", "args": ["--vault-path", "/path/to/vault", "mcp"] } }}Recommended order
Section titled “Recommended order”Start with list_meetings or search_meetings. Pass a returned id to get_meeting. Call get_meeting_transcript only if the meeting detail does not contain enough evidence.
get_meeting_transcript returns the complete transcript as [HH:MM:SS] Speaker: ... lines.
See the MCP reference for exact parameters and resource URIs.