Talandor
Public MCP report

GlobalSource Partners MCP Server

https://www.globalsourcepartners.com/mcp

Official Registry

Official Registry · com.globalsourcepartners/emerging-markets-research · Publisher: com.globalsourcepartners

Last observed

Usable now
Can I use it?

Usable now

A public MCP contract was observed. Add the endpoint to a compatible client below. A Watch can alert you if this contract changes.

https://www.globalsourcepartners.com/mcp
Tools4
AuthNo authentication challenge observed
Protocol2025-11-25
EvidencePublic contract observed
Latency4123 ms

See the measured evidence

Client fit

Compatibility is inferred from published configuration rules and is not manually verified in each client.

Claude
Observed 2025-11-25.
Likely compatible · inferred
Cursor
Streamable HTTP and public HTTPS were observed.
Likely compatible · inferred
ChatGPT
Public tool names, descriptions and schemas were observed. Plan and workspace access still apply.
Likely compatible · inferred
VS Code
Public remote HTTP configuration can be assessed.
Likely compatible · inferred
Generic MCP
Observed 2025-11-25.
Likely compatible · inferred
Show compatibility evidence

Rule evidence: Remote HTTPS rule v0.2 · reviewed 2026-09-12 · Remote HTTP rule v0.2 · reviewed 2026-09-12 · Remote app rule v0.2 · reviewed 2026-09-12 · Protocol and transport rule v0.2 · reviewed 2026-09-12

What changed

Public contract stable since
Last compared · No semantic contract change since the previous complete snapshot.
Info
search_research_posts changed its input schema
· warning · medium confidence · search_research_posts · Rule: input-schema-changed
Warning

A Watch would alert only if this change may affect the selected client.

Show 1 quieter observation
Public contract stable since
Last compared · No semantic contract change since the previous complete snapshot.
Info
Evidence and limitations

Method: anonymous Streamable HTTP probe. We never invoke a tool.

Attempted protocols: 2026-07-28, 2025-11-25

Protocol2025-11-25
TransportStreamable HTTP
AuthNo authentication challenge observed
EvidencePublic contract observed
Total latency4123 ms
Response bytes16052

No diagnostic errors.

Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
Tools and declared exposure

Server annotations are declarations, not verified behavior.

Show 4 of 4 server-provided tool definitions
read_research_author
Declared read-only
Show server-provided details
Server description (copied; language not verified)
Read a single research author by author UUID. Use this tool when a user wants profile details for a specific research author returned by another research tool. The response includes author metadata, biography fields, profile URL, and visible sectors associated with the author. Missing, inactive, non-author, and hidden-sector-only authors return a generic not-found error.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "author_uuid"
  ],
  "properties": {
    "author_uuid": {
      "type": "string",
      "description": "The stable UUID of the research author to read.\n\nUse an author_uuid returned by another research tool.\n"
    }
  }
}
read_research_post
Declared read-only
Show server-provided details
Server description (copied; language not verified)
Read a single published research post by post UUID. Use this tool after calling search_research_posts and selecting the most relevant result. The response includes post metadata, authors, sectors, body HTML, and a URL. Depending on the authenticated MCP user's permissions, the body HTML and URL may expose either the full research post or teaser content. Missing, unpublished, and hidden-sector posts return a generic not-found error.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "post_uuid"
  ],
  "properties": {
    "post_uuid": {
      "type": "string",
      "description": "The stable UUID of the research post to read.\n\nUse a post_uuid returned by search_research_posts.\n"
    }
  }
}
search_research_entities
Declared read-only
Show server-provided details
Server description (copied; language not verified)
Search research entities by name or approximate name. Use this tool whenever a user refers to an entity by name and a research entity UUID is needed. Results are ranked by match quality and include the research entity UUIDs required by other research tools. When multiple results are returned, review the entity name, description, match type, match confidence, and available research count to determine the most appropriate entity before using its entity_uuid in another tool. This tool only searches existing research entities and does not create or modify data.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "query"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Maximum number of results to return. Minimum 1, maximum 50, default 10."
    },
    "query": {
      "type": "string",
      "description": "The entity name or approximate entity reference to search for."
    }
  }
}
search_research_posts
Declared read-only
Show server-provided details
Server description (copied; language not verified)
Search published research posts associated with one or more research entities. This tool requires research entity UUIDs. If only entity names are known, first call search_research_entities to obtain candidate research entities and their UUIDs. Use only entity_uuid values copied exactly from search_research_entities results. Never infer, guess, construct, or transform UUIDs from entity names. Use this tool only after selecting the most appropriate research entity from the search_research_entities results. Examples: - To find research about "United States", first call search_research_entities with "United States", review the returned matches, select the most appropriate entity, and then call this tool with the selected entity_uuid. - To find recent research about multiple entities, pass all selected entity_uuid values in research_entity_uuids. - To retrieve the next page of results, pass the previous response's next_cursor as cursor. Results can be filtered by publication date and retrieved using cursor-based pagination.
Input schema (server-provided preview — do not copy)
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "required": [
    "research_entity_uuids"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "maximum": 50,
      "minimum": 1,
      "description": "Maximum number of posts to return. Minimum 1, maximum 50, default 25."
    },
    "order": {
      "enum": [
        "published_descending",
        "published_ascending"
      ],
      "type": "string",
      "description": "Sort results by publication time. Use 'published_descending' for newest first or 'published_ascending' for oldest first. Default is published_descending."
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor returned by a previous response. Use this to retrieve the next page of results."
    },
    "published_after": {
      "type": "string",
      "format": "date-time",
      "description": "Only return posts published after this timestamp. Provide a complete RFC 3339 timestamp including a timezone, for example 2026-08-01T00:00:00Z. Date-only values such as 2026-08-01 are not accepted."
    },
    "published_before": {
      "type": "string",
      "format": "date-time",
      "description": "Only return posts published before this timestamp. Provide a complete RFC 3339 timestamp including a timezone, for example 2026-08-01T00:00:00Z. Date-only values such as 2026-08-01 are not accepted."
    },
    "count_total_results": {
      "type": "boolean",
      "description": "Whether to include the total number of matching posts. Use false unless the total count is specifically needed. Calculating the total count may increase response time for large result sets."
    },
    "research_entity_uuids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "One or more research entity UUIDs to search against.\n\nThis field is required.\n\nAt least one research entity UUID must be supplied.\n\nDo not pass entity names.\n\nIf the user provides entity names rather than UUIDs, first call the \"search_research_entities\" tool and use the returned UUIDs from that tool.\n"
    }
  }
}

How to use this MCP

Talandor checks the server; it does not connect the server to your assistant.

Choose your client below, then copy the endpoint or configuration. Authentication is completed with the MCP provider, never inside Talandor.

Open the official client guide (opens in a new tab)
Observation history
Operational
· stable since
2025-11-25 · 4 tools · no change · 3 checks
Operational
· stable since
2025-11-25 · 4 tools · no change · 12 checks
Operational
2025-11-25 · 4 tools
Complete public contract · 2025-11-25 · 4 tools
367961724f55
Complete public contract · 2025-11-25 · 4 tools
58572f228598
Complete public contract · 2025-11-25 · 4 tools
58572f228598

Deep monitoring eligibility

Eligible for deep monitoring

A complete public tools/list contract was observed, so a future deep-monitoring baseline can be compared safely.

Personal Watch is not open yet. This report does not start a Watch or a payment.

See public monitoring
Watch · 9 €/month

Watch this MCP

Your agent depends on this MCP. We tell you before a change breaks it.

  • Know when it goes downWe confirm an outage before we alert you, so a single failed check is not treated as a lasting outage.
  • Know when its contract changesWe compare complete public tool catalogs and authentication surfaces over time.
  • Know what changed and what to fixAn alert names the change and the next step for the client you selected.

Full public-contract coverage: Availability, protocol, auth and public tool contract changes can be compared.

Full WatchAvailability, protocol, auth and public tool contract changes
Surface WatchAvailability, TLS, protocol and auth surface — no private tool diff

When Watch is open, you will be able to add, pause, resume, replace, or remove up to five endpoints. Watch checkout is not open. This page does not start a payment. You can sign in from the header; that creates an account, not a Watch. Opening date: not announced yet. Hosted checkout remains closed.

See Watch price, terms and refunds