get_blogs
Pack: spacenews · Endpoint: https://gateway.pipeworx.io/spacenews/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/get_blogs for the schema, then POST the same URL with its arguments for the data.
Fetch the latest spaceflight blog posts sorted by publication date. Returns title, summary, URL, image, and source.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
limit | number | no | Number of blog posts to return (default 10, max 100) |
Example call
Arguments
{
"limit": 10
}
curl
curl -X POST https://gateway.pipeworx.io/spacenews/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_blogs","arguments":{"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_blogs', {
"limit": 10
});
More examples
{
"limit": 20
}
Response shape
Always returns: total, returned, blogs
| Field | Type | Description |
|---|---|---|
total | number | Total number of blog posts available |
returned | number | Number of blog posts returned in this response |
blogs | array |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total number of blog posts available"
},
"returned": {
"type": "number",
"description": "Number of blog posts returned in this response"
},
"blogs": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Blog post ID"
},
"title": {
"type": "string",
"description": "Blog post title"
},
"summary": {
"type": "string",
"description": "Blog post summary"
},
"url": {
"type": "string",
"description": "Blog post URL"
},
"image_url": {
"type": "string",
"description": "Blog post image URL"
},
"source": {
"type": "string",
"description": "Blog source"
},
"published_at": {
"type": "string",
"description": "Publication date (ISO 8601)"
}
},
"required": [
"id",
"title",
"summary",
"url",
"image_url",
"source",
"published_at"
]
}
}
},
"required": [
"total",
"returned",
"blogs"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"spacenews": {
"url": "https://gateway.pipeworx.io/spacenews/mcp"
}
}
}
See Getting Started for client-specific install steps.