GoldenMatch
Server Details
Find duplicate records in 30 seconds. Zero-config entity resolution, 97.2% F1 out of the box.
Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.
If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.
- Status
- Unhealthy
- Uptime
- 5.1% over 38 days
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- benseverndev-oss/goldenmatch
- GitHub Stars
- 122
TDQS
Scored across 77 tools
Multiple tools are explicit aliases (e.g., dedupe/find_duplicates, match/match_record, explain_cluster/agent_explain_cluster) creating redundant entry points. Additionally, overlapping functionality exists between tools like add_correction and agent_approve_reject for approvals, and between find_duplicates, match_record, and agent_deduplicate for matching, making it difficult for an agent to select the correct tool.
Tool names are mostly snake_case and readable, but follow multiple conventions: verb_noun (list_clusters, run_transforms), subject_verb (identity_merge, identity_split), and an agent_ prefix group (agent_approve_reject). This mixing of patterns, while not chaotic, lacks a uniform style.
With 77 tools, the count is extremely high for an entity resolution server. Many are aliases or near-duplicates, inflating the surface unnecessarily. This exceeds the typical well-scoped range and creates a heavy, cluttered interface.
The server covers a wide range of entity resolution tasks: ingestion, profiling, configuration, matching, analysis, identity management, corrections, auditing, and exports. Minor gaps exist, such as no tool to list uploaded datasets or delete runs cleanly, but overall coverage is comprehensive for the domain.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
48 tool updates
- Changed
add_correction8 fields changed- added
Input schema / properties / cluster_idAdded value: +{ + "description": "Field-level: cluster_id the correction targets.", + "type": "integer" +} - added
Input schema / properties / corrected_valueAdded value: +{ + "description": "Field-level: the value the reviewer changed it to.", + "type": "string" +} - changed
Input schema / properties / decision / enumPrevious value: -[ - "approve", - "reject" -]New value: +[ + "approve", + "reject", + "field_correct" +] - added
Input schema / properties / field_nameAdded value: +{ + "description": "Field-level: the column being corrected.", + "type": "string" +} - added
Input schema / properties / id_a / descriptionAdded value: +"Pair-level: first row id. Field-level: ignored." - added
Input schema / properties / id_b / descriptionAdded value: +"Pair-level: second row id. Field-level: ignored." - added
Input schema / properties / original_valueAdded value: +{ + "description": "Field-level: the value build_golden_record chose.", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "id_a", - "id_b", - "decision", - "dataset" -]New value: +[ + "decision", + "dataset" +]
- Changed
agent_compare_strategies6 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - added
Input schema / properties / ground_truth_contentAdded value: +{ + "description": "Alternative to ground_truth: base64/text bytes", + "type": "string" +} - added
Input schema / properties / ground_truth_nameAdded value: +{ + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Changed
agent_deduplicate5 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / exclude_columnsAdded value: +{ + "default": [], + "description": "Column names to skip across GoldenMatch + GoldenFlow + auto-config. Optional. Layered with config.exclude_columns when both are set. force_include (env var) rescues from any opt-out path.", + "items": { + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Changed
agent_match_sources7 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / exclude_columnsAdded value: +{ + "default": [], + "description": "Column names to skip across GoldenMatch + GoldenFlow + auto-config. Optional. Layered with config.exclude_columns when both are set. force_include (env var) rescues from any opt-out path.", + "items": { + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / file_a_contentAdded value: +{ + "description": "Alternative to file_a: base64/text bytes", + "type": "string" +} - added
Input schema / properties / file_a_nameAdded value: +{ + "type": "string" +} - added
Input schema / properties / file_b_contentAdded value: +{ + "description": "Alternative to file_b: base64/text bytes", + "type": "string" +} - added
Input schema / properties / file_b_nameAdded value: +{ + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_a", - "file_b" -]New value: +[]
- Added
analyze_blocking - Changed
analyze_data4 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Changed
auto_configure5 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / exclude_columnsAdded value: +{ + "default": [], + "description": "Column names to skip across GoldenMatch + GoldenFlow + auto-config. Optional. Layered with config.exclude_columns when both are set. force_include (env var) rescues from any opt-out path.", + "items": { + "type": "string" + }, + "type": "array" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Added
certify_recall - Added
compare_clusters - Added
config_weaknesses - Added
dedupe - Added
documents_ingest - Added
documents_suggest_schema - Added
evaluate - Added
explain_cluster - Added
explain_pair - Added
explain_routing - Changed
fix_quality4 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Added
identity_audit - Added
identity_audit_seal - Added
identity_audit_verify - Added
identity_claim - Changed
identity_merge2 fields changed- added
Input schema / properties / actorAdded value: +{ + "description": "Principal making the change, e.g. 'agent:claude' or 'steward:alice'. Defaults to 'agent'.", + "type": "string" +} - added
Input schema / properties / trustAdded value: +{ + "description": "Trust of the actor in [0,1]. Defaults by actor prefix (steward 1.0, agent 0.5).", + "type": "number" +}
- Added
identity_profile - Added
identity_resolve_conflict - Added
identity_show - Changed
identity_split2 fields changed- added
Input schema / properties / actorAdded value: +{ + "description": "Principal making the change, e.g. 'agent:claude'. Defaults to 'agent'.", + "type": "string" +} - added
Input schema / properties / trustAdded value: +{ + "description": "Trust of the actor in [0,1]. Default by actor prefix.", + "type": "number" +}
- Added
identity_stats - Added
identity_worklist - Added
incremental - Added
lineage - Added
lint_routing - Added
list_plugins - Added
list_runs - Added
match - Added
memory_import - Added
plan_routing - Changed
pprl_link6 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / file_a_contentAdded value: +{ + "description": "Alternative to file_a: base64/text bytes", + "type": "string" +} - added
Input schema / properties / file_a_nameAdded value: +{ + "type": "string" +} - added
Input schema / properties / file_b_contentAdded value: +{ + "description": "Alternative to file_b: base64/text bytes", + "type": "string" +} - added
Input schema / properties / file_b_nameAdded value: +{ + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_a", - "file_b", - "fields" -]New value: +[ + "fields" +]
- Added
profile - Added
retrieve_similar - Added
review_config - Added
rollback - Changed
run_transforms4 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Changed
scan_quality4 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Added
schema_match - Added
sensitivity - Changed
suggest_pprl4 fields changed- added
Input schema / properties / encodingAdded value: +{ + "description": "Encoding of *_content (default base64)", + "enum": [ + "base64", + "text" + ], + "type": "string" +} - added
Input schema / properties / file_contentAdded value: +{ + "description": "Alternative to file_path: file bytes (base64 default, or raw with encoding='text')", + "type": "string" +} - added
Input schema / properties / filenameAdded value: +{ + "description": "Original filename when using file_content", + "type": "string" +} - changed
Input schema / requiredPrevious value: -[ - "file_path" -]New value: +[]
- Added
upload_dataset
42 tool updates
- First observed
add_correction - First observed
agent_approve_reject - First observed
agent_compare_strategies - First observed
agent_deduplicate - First observed
agent_explain_cluster - First observed
agent_explain_pair - First observed
agent_match_sources - First observed
agent_review_queue - First observed
analyze_data - First observed
auto_configure - First observed
controller_telemetry - First observed
create_domain - First observed
explain_match - First observed
export_results - First observed
find_duplicates - First observed
fix_quality - First observed
get_cluster - First observed
get_golden_record - First observed
get_stats - First observed
identity_conflicts - First observed
identity_history - First observed
identity_list - First observed
identity_merge - First observed
identity_resolve - First observed
identity_split - First observed
learn_thresholds - First observed
list_clusters - First observed
list_corrections - First observed
list_domains - First observed
match_record - First observed
memory_export - First observed
memory_stats - First observed
pprl_auto_config - First observed
pprl_link - First observed
profile_data - First observed
run_transforms - First observed
scan_quality - First observed
shatter_cluster - First observed
suggest_config - First observed
suggest_pprl - First observed
test_domain - First observed
unmerge_record
Related MCP Connectors
Fuzzy entity resolution and dedupe for names, addresses, and company records. $0.02/call via x402.
Map messy columns to a known schema — 7 scorers, domain dictionaries, F1 0.84. Zero config.
Entity resolution — data mapping, SDK code generation, docs search, and error troubleshooting
Auto-discover validation rules from data — scan, profile, health-score. No rules to write.
Related MCP Servers
- AlicenseAqualityBmaintenanceResolves messy company, customer, and vendor names across CRM, ERP, and ITSM systems to canonical records using fuzzy matching, preventing AI agents from updating or creating wrong or duplicate records.5MIT
- AlicenseNot gradedqualityCmaintenanceEnables detection of duplicate patient records for a Master Patient Index by scoring record pairs and providing verdicts and reasons, intended for synthetic data only.MIT
- AlicenseNot gradedqualityCmaintenanceLet LLMs analyze sensitive data safely by querying a tokenized, join-preserving copy of the database, with fail-closed PII scanning and provable numeric equivalence.MIT
- AlicenseNot gradedqualityAmaintenancePersistent memory layer for AI agents with entity resolution, PII detection, AES-256-GCM encryption at rest, and hybrid search. Self-hosted. 100% on LoCoMo benchmark.58 PyPI15MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.