API Documentation
Complete reference for the PlatphormNews MCP Platform API. All endpoints follow JSON-RPC 2.0 over Streamable HTTP transport with the MCP 2024-11-05 protocol.
Endpoints
All HTTP endpoints available on the PlatphormNews MCP server.
/api/mcpMCP JSON-RPC endpoint. Send JSON-RPC 2.0 messages for tools/call, resources/read, prompts/get, etc.
/api/mcpMCP server info with name, version, protocol, transport, and capability counts.
/api/healthHealth check with Redis connectivity, platform stats, and uptime metrics.
/api/docsStructured JSON documentation of all endpoints, tools, resources, and prompts.
/api/v1/test/mcpIntegration test runner. Tests MCP initialization and key tools across all categories. Add ?verbose=true for full data.
/api/v1/seedSeed the platform registry with 50 Vercel-hosted sites and register the MCP federation server.
/api/pingMinimal ping endpoint returning OK status and timestamp for uptime monitoring.
MCP Tools (71)
All tools available via tools/call JSON-RPC method.
network info, sites, MCP servers, domain resolve, sitemap, API discovery, health check
list, get, create, update, delete, publish articles
list, create, update, delete categories
list, create, update, delete FAQs
full-text article search
view counts, trending, event tracking
org repos, details, info, code search, trending
list, get, register, update, resolve, token, capability, domains, sitemap, crawl, validate, audit-log
list events, emit event, audit trail
list, get by site, record deployment
cross-site search, platform stats, aggregate analytics
today's posts, get post, search posts
list servers, proxy MCP call
Neon, Render, Vercel infra + capability graph + health summary
Quake stats, platform jobs, fashion trends
list sites, get site, list articles, list events, table info
Discovery Files
Machine-readable files for search engines, LLM agents, and feed readers.
/openapi.yamlFull OpenAPI specification covering every endpoint, schema, tool, resource, and prompt.
/llms.txtSummary LLM discovery file with endpoint, capabilities, and categories.
/llms-full.txtComplete LLM specification with all 41 tools, parameters, resources, and prompts.
/llms-index.jsonStructured JSON metadata for LLM agents with tool categories and connection configs.
/rss.xmlRSS feed with platform updates and announcements.
/feed.xmlAtom 1.0 feed with platform updates.
/sitemap.xmlXML sitemap with all public pages.
/robots.txtCrawler directives for search engines.
Quick Start
Connect to the MCP server from any compatible client.
{
"mcpServers": {
"platphormnews": {
"url": "https://mcp.platphormnews.com/api/mcp"
}
}
}curl -X POST https://mcp.platphormnews.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"curl","version":"1.0"}}}'