We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ibarrajo/tree-analyzer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name_clusters.md.j2•1.04 KiB
# Name Duplicate Clusters Report
**Surname Filter:** {{ surname_filter }}
**Similarity Threshold:** {{ (threshold * 100)|round(1) }}%
**Total Clusters:** {{ total_clusters }}
**Generated:** {{ generated_at }}
---
{% if clusters %}
{% for cluster in clusters %}
## Cluster {{ cluster.cluster_id + 1 }} ({{ cluster.size }} persons)
| Person | Similarity | Link |
|--------|------------|------|
{% for person in cluster.persons %}
| {{ person.display_name }} | {{ (person.similarity_score * 100)|round(1) }}% | [View]({{ person.person_id|person_url }}) |
{% endfor %}
**Analysis:** This cluster contains {{ cluster.size }} persons with similar names. Review each person's birth/death dates, parents, and sources to determine if they represent:
- The same person (duplicate entries)
- Different people with the same name from different generations
- Different people with the same name from the same generation (cousins, etc.)
---
{% endfor %}
{% else %}
No name clusters found with the current threshold.
{% endif %}
---
*Generated by tree-analyzer-mcp*