co_author_graph
Map the co-authorship network for one or more authors. Identify collaboration ties, shared papers, and recent collaborations within a specified time window.
Instructions
Find the co-authorship neighborhood of one or more authors. Given a list of author_ids, returns edges {from, to, papers_count, last_collab_year} where 'from' is one of the input authors and 'to' is any co-author appearing on a shared paper within the window. Use for AC reviewer triage (find conflicts), disambiguating researchers (who do they actually work with?), or expanding an author seed into a research community. window_years defaults to 10. Result is capped at 500 edges, sorted by papers_count DESC.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| author_ids | Yes | Author IDs to query (1-25). Get author IDs via the find_author tool. | |
| window_years | No | Only count co-authorships from the last N years (default 10, max 30). |