get_blogs

Pack: spacenews · Endpoint: https://gateway.pipeworx.io/spacenews/mcp

Fetch the latest spaceflight blog posts sorted by publication date. Returns title, summary, URL, image, and source.

Parameters

NameTypeRequiredDescription
limitnumbernoNumber 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

FieldTypeDescription
totalnumberTotal number of blog posts available
returnednumberNumber of blog posts returned in this response
blogsarray
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.

Regenerated from source · build May 9, 2026