GlobalSource Partners MCP Server
Server Details
Search expert emerging-markets research on economics, politics, policy and sovereign risk.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.5/5 across 4 of 4 tools scored.
Each tool targets a distinct resource and action: search entities by name, search posts by entity UUIDs, read a post by UUID, and read an author by UUID. The descriptions clearly delineate their purposes and include explicit cross-references, making misselection unlikely.
All tool names follow a strict verb_noun pattern with a consistent 'research_' prefix: read_research_author, read_research_post, search_research_entities, search_research_posts. The verbs 'read' and 'search' accurately reflect retrieval operations, and naming is uniform.
With 4 tools, the server is well-scoped for a read-only research retrieval domain. Each tool serves a necessary function in the entity-based research workflow, and the count is neither thin nor bloated.
The tool set covers the full research retrieval lifecycle: entity discovery (search_research_entities), content discovery (search_research_posts), and content retrieval (read_research_post, read_research_author). The dependency hints ensure agents can complete workflows without dead ends, and the read-only scope needs no CRUD operations.
Available Tools
4 toolsread_research_authorARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| author_uuid | Yes | The stable UUID of the research author to read. Use an author_uuid returned by another research tool. |
Output Schema
| Name | Required | Description |
|---|---|---|
| author_name | Yes | The display name of the research author. |
| author_uuid | Yes | The stable UUID of the research author. |
| author_sectors | Yes | The visible sectors associated with this research author. |
| author_profile_url | Yes | The URL where this research author's profile can be viewed. |
| author_biography_html | Yes | The research author's biography as HTML, if available. |
| author_short_biography | Yes | A short biography or role summary for the research author, if available. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds valuable context beyond this by listing response contents (metadata, biography, profile URL, visible sectors) and disclosing the generic not-found error for missing/inactive/non-author/hidden-sector cases. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four short, purposeful sentences with no redundancy. The first sentence states the core action, the second gives usage context, the third summarizes the response, and the fourth covers error behavior.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has a rich output schema, so return values need not be fully spelled out. The description ably covers key output categories and error conditions, and the single parameter is fully documented in the schema. With strong annotations, this is complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, with the parameter description already explaining that author_uuid is a stable UUID from another research tool. The tool description reinforces this but adds no new semantics or format details beyond the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb+resource: 'Read a single research author by author UUID.' This clearly distinguishes it from sibling tools that read posts or search entities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use: 'when a user wants profile details for a specific research author returned by another research tool.' This also implies the author_uuid comes from a sibling tool, providing clear context and an implicit exclusion of search tools for already-known UUIDs.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_research_postARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| post_uuid | Yes | The stable UUID of the research post to read. Use a post_uuid returned by search_research_posts. |
Output Schema
| Name | Required | Description |
|---|---|---|
| post_url | Yes | The URL where this research post can be viewed. This may be a full post URL or teaser URL depending on the MCP user's permissions. |
| post_type | Yes | The type of research post, e.g., 'Report', 'In Brief', 'Presentation', etc. |
| post_uuid | Yes | The stable UUID of the research post. |
| post_title | Yes | The title of the research post. |
| post_authors | Yes | The authors of this research post. |
| post_sectors | Yes | The sectors associated with this research post. Only clients who are permissioned for these sectors can access the full version of this post; other clients will receive teaser content. |
| post_updated | Yes | The most recent update timestamp of the research post in ISO 8601 format. |
| post_body_html | Yes | The HTML body available for this research post. This may be full post content or teaser content depending on the MCP user's permissions. |
| post_published | Yes | The publication timestamp of the research post in ISO 8601 format. |
| post_snippet_notice | Yes | A notice shown when the returned body contains only teaser or snippet content instead of the full research post. Null when the MCP user can view the full post. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, but the description adds valuable behavioral detail: response contents (metadata, authors, sectors, body HTML, URL), permission-dependent teaser vs full content, and generic not-found error for missing/unpublished/hidden-sector posts. This goes beyond what annotations convey.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three short paragraphs, front-loaded with purpose, followed by usage flow, response summary, permission caveat, and error behavior. Every sentence contributes meaning without redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple one-parameter read tool, the description covers the full context: how to select the UUID, what the response will contain, permission-based limitations, and error handling. No significant gaps remain.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter post_uuid is fully described in the schema with the same guidance (use UUID from search_research_posts). The description adds no new semantic detail beyond repeating the schema. Baseline 3 for 100% schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with 'Read a single published research post by post UUID', which clearly specifies the verb, resource, and scope. It distinguishes from sibling tools by explicitly referencing search_research_posts and focusing solely on reading a post rather than authors or entities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit when-to-use guidance: 'Use this tool after calling search_research_posts and selecting the most relevant result.' This directs the agent to a specific workflow and implies it is not for searching. Strongly differentiated from alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_research_entitiesARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results to return. Minimum 1, maximum 50, default 10. | |
| query | Yes | The entity name or approximate entity reference to search for. |
Output Schema
| Name | Required | Description |
|---|---|---|
| limit | Yes | The maximum number of matching research entities requested. |
| results | Yes | The matching research entities, ordered by match confidence. |
| queried_name | Yes | The normalized version of the query used to search for research entities. |
| total_results_count | Yes | The total number of matching research entities found before applying the result limit. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds value by explaining that results are ranked by match quality and include contextual fields, and reinforces that the tool does not modify data. This goes beyond the annotation hints without contradicting them.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is structured into clear segments: main action, usage trigger, result format, and selection guidance. While slightly verbose, every sentence contributes useful context. It could be tightened by removing the redundant 'does not create or modify data' line, but it remains appropriately sized.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has an output schema, so return values are covered. The description covers when to use it, what results look like, and how to choose the best match. It lacks details about default limit behavior, but that is in the schema. Overall, it gives enough context for correct use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Input schema provides 100% parameter descriptions, so baseline is 3. The description adds minimal extra parameter semantics, only implying that 'query' supports approximate names. It does not elaborate on 'limit' beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: search research entities by name or approximate name. It distinguishes itself from siblings like search_research_posts by focusing on entities broadly, and specifies that it returns UUIDs needed by other research tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on when to use the tool ('whenever a user refers to an entity by name and a research entity UUID is needed') and gives detailed instructions on how to select the correct result from multiple matches. No exclusions are needed given the clear use case.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_research_postsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of posts to return. Minimum 1, maximum 50, default 25. | |
| order | No | Sort results by publication time. Use 'published_descending' for newest first or 'published_ascending' for oldest first. Default is published_descending. | |
| cursor | No | Pagination cursor returned by a previous response. Use this to retrieve the next page of results. | |
| published_after | No | Only return posts published after this date and time (ISO 8601 format). | |
| published_before | No | Only return posts published before this date and time (ISO 8601 format). | |
| count_total_results | No | 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 | Yes | One or more research entity UUIDs to search against. This field is required. At least one research entity UUID must be supplied. Do not pass entity names. If the user provides entity names rather than UUIDs, first call the "search_research_entities" tool and use the returned UUIDs from that tool. |
Output Schema
| Name | Required | Description |
|---|---|---|
| limit | Yes | The maximum number of research posts requested. |
| order | Yes | The sort order applied to the results. |
| results | Yes | The research posts matching the supplied research entities and filters, ordered according to the requested sort order. |
| next_cursor | Yes | An opaque pagination cursor. Supply this value in a subsequent request to retrieve the next page of results. Clients should not attempt to interpret or modify the cursor value. If this field is null, there are no additional pages of results. |
| published_after | Yes | The effective lower publication timestamp used for the search. If no lower publication date filter was supplied, this defaults to the earliest date from which research is available. |
| published_before | Yes | The effective upper publication timestamp used for the search. If no upper publication date filter was supplied, this defaults to the current date and time. |
| research_entities | Yes | The research entities used to filter the search results. |
| total_results_count | Yes | The total number of matching research posts before pagination was applied. Returned only when count_total_results was requested with true; otherwise null. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool as read-only, idempotent, and non-destructive. The description adds valuable behavioral context: it only searches published posts, strictly requires exact UUIDs (never inferred), and supports cursor-based pagination and date filtering. No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured: summary first, then prerequisites, followed by examples. It is somewhat lengthy and repeats the UUID caution, but this is justified for a tool with a high-risk misuse pattern. Every section serves a clear purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (prerequisite entity search, exact UUID requirement, multiple filters, pagination), the description covers all necessary usage context: how to prepare inputs, what to do with entity names, how to paginate, and what filtering capabilities exist. The output schema handles return-value documentation, so nothing important is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage with descriptions for all 7 parameters. The description reinforces critical UUID handling and cursor semantics, but does not add substantial meaning beyond the schema, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches published research posts associated with one or more research entities. It distinguishes itself from siblings: search_research_entities finds entities, while read_research_post and read_research_author read specific records.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit workflow: if only entity names are known, first call search_research_entities; use exact UUIDs from that result; select the most appropriate entity before searching posts. It also includes concrete examples and pagination guidance, making when-to-use unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
AlicenseBqualityBmaintenanceDeliver real-time investment research with extensive private and public market data.3217146MIT- Alicense-qualityCmaintenanceAgent-ready economic, market & geo-health intelligence — 163 MCP tools, 155 driver-backed indices.MIT
- Flicense-qualityCmaintenanceProvides business intelligence, compliance tools, and economic data for Latin America, including Brazilian company lookups, tax ID validation for multiple countries, and economic indicators from official government sources.