blog_entry_view

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

Full blog entry by id.

Parameters

NameTypeRequiredDescription
blog_idnumberyes

Example call

curl -X POST https://gateway.pipeworx.io/codeforces/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"blog_entry_view","arguments":{}}}'

Response shape

Always returns: status

FieldTypeDescription
statusstringResponse status (OK or FAILED)
resultobjectBlog entry object
commentstringError comment (if status is FAILED)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Response status (OK or FAILED)"
    },
    "result": {
      "type": "object",
      "description": "Blog entry object",
      "properties": {
        "id": {
          "type": "number",
          "description": "Blog entry ID"
        },
        "originalLocale": {
          "type": "string",
          "description": "Original locale"
        },
        "creationTimeSeconds": {
          "type": "number",
          "description": "Unix timestamp of creation"
        },
        "authorsUserHandles": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Author handles"
        },
        "title": {
          "type": "string",
          "description": "Blog entry title"
        },
        "content": {
          "type": "string",
          "description": "Blog entry content (HTML)"
        },
        "locale": {
          "type": "string",
          "description": "Locale of the entry"
        },
        "modificationTimeSeconds": {
          "type": "number",
          "description": "Unix timestamp of last modification"
        },
        "allowViewHistory": {
          "type": "boolean",
          "description": "Allow viewing edit history"
        },
        "tags": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Blog tags"
        },
        "rating": {
          "type": "number",
          "description": "Blog entry rating"
        }
      }
    },
    "comment": {
      "type": "string",
      "description": "Error comment (if status is FAILED)"
    }
  },
  "required": [
    "status"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "codeforces": {
      "url": "https://gateway.pipeworx.io/codeforces/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 21, 2026