spacenews
Server Details
Spacenews MCP — wraps the Spaceflight News API v4 (free, no auth)
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- pipeworx-io/mcp-spacenews
- GitHub Stars
- 0
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 3.5/5 across 3 of 3 tools scored.
The tools are mostly distinct with clear purposes: get_articles for news, get_blogs for blogs, and search_articles for keyword searches. However, get_articles and get_blogs could be slightly confused as both fetch 'latest' content sorted by date with similar return fields, but their descriptions clarify the content type (news vs. blogs).
All tool names follow a consistent verb_noun pattern using snake_case: get_articles, get_blogs, and search_articles. The verbs 'get' and 'search' are appropriate and predictable, making the set easy to understand and use.
With only 3 tools, the server feels thin for a news/spaceflight domain, as it lacks operations like filtering by date, category, or source, or updating/deleting content if applicable. While it covers basic fetching and searching, more tools could enhance functionality without overwhelming.
The server provides core read and search operations for spaceflight content, but there are notable gaps. For example, it lacks tools for filtering articles/blogs by criteria like date range or source, and if the domain includes user interactions or content management, CRUD operations beyond fetching are missing.
Available Tools
3 toolsget_articlesBInspect
Fetch the latest spaceflight news articles sorted by publication date. Returns title, summary, URL, image, and source.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of articles to return (default 10, max 100) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but offers limited behavioral insight. It mentions sorting and return fields but doesn't cover pagination, rate limits, authentication needs, error conditions, or whether this is a read-only operation (though 'fetch' implies safe retrieval).
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 a single, efficient sentence that front-loads the core purpose and includes essential details about sorting and return fields. Every word contributes value with zero redundancy.
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 read operation with one optional parameter and no output schema, the description is adequate but minimal. It covers what the tool does and what it returns, but lacks behavioral context that would be helpful given the absence of annotations.
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 description coverage is 100%, so the parameter 'limit' is fully documented in the schema. The description doesn't add any parameter-specific information beyond what's in the schema, maintaining the baseline score for high 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 clearly states the action ('fetch'), resource ('spaceflight news articles'), and key attributes ('sorted by publication date', returns specific fields). It distinguishes from 'search_articles' by focusing on latest articles rather than search functionality, though it doesn't explicitly mention 'get_blogs'.
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 implies usage for retrieving latest spaceflight news, suggesting this is for general browsing rather than targeted searches. However, it doesn't explicitly state when to use this versus 'get_blogs' or 'search_articles', nor does it provide any exclusion criteria or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_blogsBInspect
Fetch the latest spaceflight blog posts sorted by publication date. Returns title, summary, URL, image, and source.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of blog posts to return (default 10, max 100) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It describes the return format ('title, summary, URL, image, and source') and sorting behavior ('sorted by publication date'), which is useful. However, it lacks details about error handling, rate limits, authentication requirements, or whether this is a read-only operation (though 'fetch' implies reading). The description adds some value but doesn't fully compensate for the absence of 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 extremely concise and front-loaded: two sentences that efficiently convey the core functionality and return format. Every word earns its place with no redundancy or unnecessary elaboration. It's appropriately sized for a simple tool with one optional parameter.
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 low complexity (one optional parameter, no output schema, no annotations), the description is adequate but has clear gaps. It explains what the tool returns and sorting behavior, which helps the agent understand the output. However, without annotations or output schema, it doesn't provide complete context about error cases, pagination, or how to interpret the return values beyond listing fields.
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 has 100% description coverage, with the 'limit' parameter fully documented in the schema. The description doesn't mention parameters at all, so it adds no semantic value beyond what the schema provides. According to the rules, when schema_description_coverage is high (>80%), the baseline is 3 even with no parameter information in the description.
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: 'Fetch the latest spaceflight blog posts sorted by publication date.' It specifies the verb ('fetch'), resource ('spaceflight blog posts'), and sorting criteria. However, it doesn't explicitly distinguish this tool from its siblings (get_articles, search_articles), which would require clarification about what makes blogs different from articles or when to use this versus search functionality.
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 no guidance on when to use this tool versus its siblings (get_articles, search_articles). It mentions what the tool does but offers no context about alternatives, exclusions, or specific scenarios where this tool is preferred. The agent receives no help in choosing between similar tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articlesAInspect
Search spaceflight news articles by keyword. Returns matching articles with title, summary, URL, and publication date.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Number of results to return (default 10, max 100) | |
| query | Yes | Search query (e.g. "SpaceX Starship launch") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the return format (title, summary, URL, publication date) which is valuable, but doesn't mention behavioral traits like rate limits, authentication needs, pagination, or error handling. It adequately describes the core behavior but lacks operational context.
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 a single, well-structured sentence that efficiently states the action, resource, and return format. It's front-loaded with the core purpose and wastes no words, making it easy to parse quickly.
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 moderate complexity (search with 2 parameters) and no annotations or output schema, the description is reasonably complete. It covers the purpose, resource, and return format, but could improve by adding more behavioral context (e.g., search scope, result limits beyond the schema's default/max). It's adequate but not exhaustive.
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 description coverage is 100%, so the schema already fully documents both parameters (query and limit). The description adds no additional parameter semantics beyond what the schema provides, such as search syntax or result ordering. Baseline 3 is appropriate when the schema does all the work.
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 with a specific verb ('Search') and resource ('spaceflight news articles'), and distinguishes it from sibling tools (get_articles, get_blogs) by specifying it's for searching by keyword rather than retrieving articles directly.
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 implies when to use this tool (for searching articles by keyword) versus the sibling tools (which likely retrieve articles without searching), but doesn't explicitly state when not to use it or name alternatives. The context is clear but lacks explicit exclusions.
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!