API Documentation
Complete reference for the PlatphormNews MCP Platform API. 8+ sites, 11 MCP-enabled subdomains, 2 federated MCP servers. All endpoints follow JSON-RPC 2.0 over Streamable HTTP transport.
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/discoveryAuto-discovery engine for *.platphormnews.com. Scan, list, crawl, and register subdomains. Supports ?subdomain=, ?action=scan|list|crawl, and POST for full registration.
/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 (72)
All tools available via tools/call JSON-RPC method. Tool count reflects live server registration — use tools/list for the authoritative list.
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
Auto-Discovery
The network auto-discovery engine scans all 24 known *.platphormnews.com subdomains, queries MCP tools/list, resources/list, and prompts/list via JSON-RPC, and auto-registers newly discovered tools as SiteCapability records.
Verticals covered:
Discovery Files
Machine-readable files for search engines, LLM agents, IDEs, and feed readers.
/.well-known/mcp.jsonMCP manifest with live tool/resource/prompt counts, transport config, network federation info, and integration examples.
/.well-known/agents.jsonAI agent registry listing all MCP-enabled agents with IDE integration configs for Cursor, Windsurf, VS Code, Claude Desktop, and Zed.
/.well-known/ai-plugin.jsonOpenAI ChatGPT plugin manifest for AI assistant integration with live capability counts.
/.well-known/security.txtSecurity contact information following RFC 9116.
/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 tools, parameters, resources, and prompts.
/llms-index.jsonDynamic JSON metadata for LLM agents: live tool list, IDE configs, network map, and capability counts.
/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.
IDE & Agent Integration
Connect to the MCP server from any compatible client or IDE.
{
"mcpServers": {
"platphormnews": {
"url": "https://mcp.platphormnews.com/api/mcp"
}
}
}{
"mcpServers": {
"platphormnews": {
"serverUrl": "https://mcp.platphormnews.com/api/mcp"
}
}
}{
"mcp.servers": {
"platphormnews": {
"type": "http",
"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"}}}'curl -X POST https://mcp.platphormnews.com/api/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'