Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsA

Average 4.5/5 across 4 of 4 tools scored.

Server CoherenceA
Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count5/5

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.

Completeness5/5

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 tools
read_research_authorA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
author_uuidYesThe stable UUID of the research author to read. Use an author_uuid returned by another research tool.

Output Schema

ParametersJSON Schema
NameRequiredDescription
author_nameYesThe display name of the research author.
author_uuidYesThe stable UUID of the research author.
author_sectorsYesThe visible sectors associated with this research author.
author_profile_urlYesThe URL where this research author's profile can be viewed.
author_biography_htmlYesThe research author's biography as HTML, if available.
author_short_biographyYesA short biography or role summary for the research author, if available.
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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_postA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
post_uuidYesThe stable UUID of the research post to read. Use a post_uuid returned by search_research_posts.

Output Schema

ParametersJSON Schema
NameRequiredDescription
post_urlYesThe 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_typeYesThe type of research post, e.g., 'Report', 'In Brief', 'Presentation', etc.
post_uuidYesThe stable UUID of the research post.
post_titleYesThe title of the research post.
post_authorsYesThe authors of this research post.
post_sectorsYesThe 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_updatedYesThe most recent update timestamp of the research post in ISO 8601 format.
post_body_htmlYesThe HTML body available for this research post. This may be full post content or teaser content depending on the MCP user's permissions.
post_publishedYesThe publication timestamp of the research post in ISO 8601 format.
post_snippet_noticeYesA 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.
Behavior5/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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_entitiesA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of results to return. Minimum 1, maximum 50, default 10.
queryYesThe entity name or approximate entity reference to search for.

Output Schema

ParametersJSON Schema
NameRequiredDescription
limitYesThe maximum number of matching research entities requested.
resultsYesThe matching research entities, ordered by match confidence.
queried_nameYesThe normalized version of the query used to search for research entities.
total_results_countYesThe total number of matching research entities found before applying the result limit.
Behavior4/5

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.

Conciseness4/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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_postsA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of posts to return. Minimum 1, maximum 50, default 25.
orderNoSort results by publication time. Use 'published_descending' for newest first or 'published_ascending' for oldest first. Default is published_descending.
cursorNoPagination cursor returned by a previous response. Use this to retrieve the next page of results.
published_afterNoOnly return posts published after this date and time (ISO 8601 format).
published_beforeNoOnly return posts published before this date and time (ISO 8601 format).
count_total_resultsNoWhether 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_uuidsYesOne 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

ParametersJSON Schema
NameRequiredDescription
limitYesThe maximum number of research posts requested.
orderYesThe sort order applied to the results.
resultsYesThe research posts matching the supplied research entities and filters, ordered according to the requested sort order.
next_cursorYesAn 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_afterYesThe 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_beforeYesThe 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_entitiesYesThe research entities used to filter the search results.
total_results_countYesThe total number of matching research posts before pagination was applied. Returned only when count_total_results was requested with true; otherwise null.
Behavior4/5

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.

Conciseness4/5

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.

Completeness5/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines5/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources