The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Fix Protocol MCP listing page.
MCP server for parsing, validating, building, and explaining FIX protocol messages - the tag=value format used for orders and executions across equities, FX, and fixed-income trading.
Runs fully offline. Parsing, validation (BodyLength/CheckSum included), message construction, and the bundled FIX 4.4 field dictionary are all self-contained, no external API or network calls.
| Tool | What it does |
|---|---|
parse_fix_message | Decode a raw FIX string into tag, field name, value, and enum meaning. Accepts SOH-, |-, or ^-delimited input. |
validate_fix_message | Check field ordering, the standard header, BodyLength(9) and CheckSum(10) against computed values, and required/conditional fields per message type. Returns errors and warnings. |
build_fix_message | Construct a valid FIX message from field inputs. Accepts tag numbers or field names, and enum codes or labels ("Side": "Buy"). BeginString, BodyLength, and CheckSum are computed automatically. |
explain_fix_tag | Look up a tag's field name, data type, and enumerated values. |
This installs the fix-protocol-mcp console script (stdio MCP server).
Running from source instead of installing:
Parse a Logon message:
Validate, catching a bad checksum:
Build an order from field names:
Explain a tag:
The dictionary covers session-level messages and the order/execution workflow (Logon, Heartbeat, TestRequest, ResendRequest, Reject, SequenceReset, Logout, NewOrderSingle, OrderCancelRequest, OrderCancelReplaceRequest, ExecutionReport, OrderCancelReject), which accounts for most real FIX traffic. It's a curated subset rather than the full FIX repository - unrecognised tags and enum values surface as warnings, not hard failures.
server.py is a thin MCP wrapper around the core modules (parser,
validator, builder, dictionary, wire), which have no dependency on
the MCP SDK and can be used as a plain library:
MIT - see LICENSE.