# mcp MCP server

Search and list latest international news (sources, comments, knowledge graph).

## Links
- Registry page: https://www.getdrio.com/mcp/info-mosaique-mcp

## Install
- Endpoint: https://mcp.mosaique.info
- Auth: Auth required by registry metadata

## Setup notes
- Remote header: X-API-Key (required; secret)
- The upstream registry signals required auth or secrets.
- Remote endpoint: https://mcp.mosaique.info
- Header: X-API-Key

## Tools
- Recent_Headlines_About - Get recent headlines about article, country, person, organization or perspective.
Use the Search tool first to find valid ids..
ex: id = "Donald Trump"
    returns:
    {
        articles:
        [
            0: {
                date: "2025-08-13T14:13:24.369303Z"
                id: "National Guard deployed in Washington after Trump assumes control of city policea99c81"
                title: "National Guard deployed in Washington after Trump assumes control of city police"
            }
            ...
        ]
        key: {
            filter: "category=unknown,region=World,timespan=year"
            attributes: "country=US,org=Republican Party"
            id: "Donald Trump"
            type: "facet"
        }
    } Endpoint: https://mcp.mosaique.info
- Headlines_About - Get headlines about article, country, person, organization or perspective.
Use the Search tool first to find valid ids..
ex: id = "Donald Trump"
    returns:
    {
        articles:
        [
            0: {
                date: "2025-08-09T06:03:08.24016Z"
                id: "Donald Trump and Vladimir Putin to Meet in Alaska on August 15th4a4a89"
                title: "Donald Trump and Vladimir Putin to Meet in Alaska on August 15th"
            }
            ...
        ]
        key: {
            filter: "category=unknown,region=World,timespan=year"
            attributes: "country=US,org=Republican Party"
            id: "Donald Trump"
            type: "facet"
        }
    } Endpoint: https://mcp.mosaique.info
- Relations_Graph - Get relations to article, country, person, organization or perspective.
ex: id = "War Crimes"
    returns:
    {
        "graph": {
            "countries": [
                "SD",
                ...
            ],
            "organizations": [
                "United Nations",
                ...
            ],
            "persons": [
                "Mohamed Hamdan Dagalo",
                ...
            ],
            "technicals": [
                "Kavumu Airport",
                ...
            ],
            "perspectives": [
                "Ethnic tensions",
                ...
            ]
        },
        "key": {
            "filter": "category=unknown,region=World,timespan=year",
            "attributes": "none",
            "id": "War Crimes",
            "type": "facet"
        }
    } Endpoint: https://mcp.mosaique.info
- Recent_Comments_by_Author - Get recent comments made by a person or an organization.
ex: id = "Nvidia"
    returns
    {
        "comments": [
            0: {
                article: {
                    date: "2025-08-11T14:11:14.175079Z"
                    id: "Nvidia and AMD Agree to Pay 15% of China Chip Revenues to US427b24"
                    title: "Nvidia and AMD Agree to Pay 15% of China Chip Revenues to US"
            }
            comments: [
                0: {
                    content: "We follow rules the US government sets for our participation in worldwide markets."
                    references: [
                        0: "https://..."
                    ]
                }
                ...
            ]
        ...
        ],
        "key": {
            "filter": "category=unknown,region=World,timespan=week",
            "attributes": "country=US,org=unknown",
            "id": "Nvidia",
            "type": "facet"
        }
    } Endpoint: https://mcp.mosaique.info
- Recent_Headlines - ex: {
        articles:
        [
            0: {
                date: "2025-08-11T22:17:11.061114Z"
                id: "Trump extends China tariff deadline by 90 days10d78a"
                title: "Trump extends China tariff deadline by 90 days"
            }
            ...
        ]
    } Endpoint: https://mcp.mosaique.info
- Comments_on_Article - Get comments made on specified article.
ex: id = "China Launches Probe to Retrieve Samples from Far Side of Moon595192"
    returns:
    {
        "comments": [
            {
                "author": {
                    "filter": "none",
                    "attributes": "country=US,org=National Aeronautics and Space Administration",
                    "id": "Bill Nelson",
                    "type": "person"
                },
                "comments": [
                    {
                        "content": "We believe that a lot of their so-called civilian space program is a military program.",
                        "references": [
                            "https://..."
                        ]
                    }
                ]
            }
            ...
        ],
        "key": {
            "filter": "category=unknown,region=EastAsia,timespan=threeDays",
            "attributes": "none",
            "id": "China Launches Probe to Retrieve Samples from Far Side of Moon",
            "type": "article"
        }
    } Endpoint: https://mcp.mosaique.info
- Article - Get summary and sources of specified article.
ex: id = "China Launches Probe to Retrieve Samples from Far Side of Moon595192"
    returns:
    {
        "summary": "China has successfully launched...",
        "sources": [
            {
                "name": "...",
                "url": "https://www..."
            }
        ],
        "key": {
            "filter": "category=unknown,region=EastAsia,timespan=threeDays",
            "attributes": "none",
            "id": "China Launches Probe to Retrieve Samples from Far Side of Moon",
            "type": "article"
        }
    } Endpoint: https://mcp.mosaique.info
- Headlines - ex: {
        articles:
        [
            0: {
                date: "2025-06-22T04:04:36.598062Z"
                id: "US Destroys Three Key Iranian Nuclear Sites, Including Fordow16c410"
                title: "US Destroys Three Key Iranian Nuclear Sites, Including Fordow"
            }
            ...
        ]
    } Endpoint: https://mcp.mosaique.info
- Comments_by_Author - Get recent comments made by a person or an organization.
ex: id = "Nvidia"
    returns
    {
        "comments": [
            0: {
                article: {
                    date: "2025-08-11T14:11:14.175079Z"
                    id: "Nvidia and AMD Agree to Pay 15% of China Chip Revenues to US427b24"
                    title: "Nvidia and AMD Agree to Pay 15% of China Chip Revenues to US"
            }
            comments: [
                0: {
                    content: "We follow rules the US government sets for our participation in worldwide markets."
                    references: [
                        0: "https://..."
                    ]
                }
                ...
            ]
        ...
        ],
        "key": {
            "filter": "category=unknown,region=World,timespan=week",
            "attributes": "country=US,org=unknown",
            "id": "Nvidia",
            "type": "facet"
        }
    } Endpoint: https://mcp.mosaique.info
- Search - Search for article, country, person, organization or perspective.
ex: q = "war"
    returns:
    [
        0: {
            id: "Russia-Ukraine War"
            type: "perspective"
        }
        ...
    ] Endpoint: https://mcp.mosaique.info

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: info.mosaique
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Sep 10, 2025
- Source: https://registry.modelcontextprotocol.io
