{
  "protocolVersion": "1.0",
  "name": "wpnews",
  "description": "AI-curated news aggregator for AI and tech news. Provides real-time articles, search, entity tracking, trending analysis, and LLM-optimised context blocks. Updated every 30 minutes from curated RSS feeds.",
  "url": "https://wpnews.pro",
  "provider": {
    "name": "wpnews.pro",
    "url": "https://wpnews.pro",
    "organization": "wpnews"
  },
  "version": "1.2.0",
  "documentationUrl": "https://wpnews.pro/for-llms",
  "capabilities": {
    "streaming": true,
    "pushNotifications": true,
    "stateTransitionHistory": false
  },
  "authentication": {
    "schemes": [
      "apiKey"
    ],
    "apiKeyHeader": "X-API-Key",
    "freeAccess": true,
    "freeRateLimit": "1000 calls/day",
    "keySignupUrl": "https://wpnews.pro/api"
  },
  "defaultInputModes": [
    "text"
  ],
  "defaultOutputModes": [
    "text",
    "application/json",
    "text/markdown",
    "application/x-ndjson"
  ],
  "skills": [
    {
      "id": "get_news",
      "name": "Get latest news",
      "description": "Fetch the latest AI and tech news articles with topic, sentiment, and language filters.",
      "tags": [
        "news",
        "ai",
        "tech",
        "articles"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/json"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/articles?lang=en&limit=10"
      ]
    },
    {
      "id": "search_news",
      "name": "Search news",
      "description": "Full-text BM25 search over all AI and tech news articles.",
      "tags": [
        "search",
        "fts5",
        "news"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/json"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/search?q=OpenAI+GPT-5&lang=en"
      ]
    },
    {
      "id": "context_injection",
      "name": "Context injection",
      "description": "Pre-formatted news digest ready to inject into LLM system prompts. Supports text, markdown, and JSON formats.",
      "tags": [
        "context",
        "system-prompt",
        "digest",
        "rag"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "text/plain",
        "text/markdown",
        "application/json"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/context?format=text&hours=24&limit=10"
      ]
    },
    {
      "id": "streaming",
      "name": "NDJSON article stream",
      "description": "Stream articles as newline-delimited JSON for vector database ingestion.",
      "tags": [
        "ndjson",
        "streaming",
        "vector-db",
        "rag"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/x-ndjson"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/articles/stream?lang=en&limit=50"
      ]
    },
    {
      "id": "entity_tracking",
      "name": "Entity tracking",
      "description": "Track news coverage of specific companies, people, and organizations. Get trending entities by velocity.",
      "tags": [
        "entities",
        "companies",
        "knowledge-graph"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/json"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/entities/OpenAI/articles",
        "https://api.wpnews.pro/api/v1/entities/trending?days=7"
      ]
    },
    {
      "id": "mcp",
      "name": "MCP Server",
      "description": "Native Model Context Protocol server. Connect via npx wpnews-mcp (stdio) or GET /mcp/sse (HTTP+SSE).",
      "tags": [
        "mcp",
        "claude",
        "cursor",
        "cline"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/json"
      ],
      "examples": [
        "npx wpnews-mcp",
        "https://api.wpnews.pro/mcp/sse"
      ]
    },
    {
      "id": "openai_tools",
      "name": "OpenAI function calling",
      "description": "75 ready-to-use OpenAI and Anthropic tool schemas. Zero manual JSON definition. Includes discovery tools: find_topics, find_entities.",
      "tags": [
        "openai",
        "anthropic",
        "function-calling",
        "tool-use"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/json"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/openai-tools.json",
        "https://api.wpnews.pro/api/v1/anthropic-tools.json"
      ]
    },
    {
      "id": "discovery",
      "name": "Topic & entity discovery",
      "description": "Fuzzy slug/name discovery \u2014 find canonical topic slugs and entity names by free-text search before calling digest or comparison endpoints.",
      "tags": [
        "discovery",
        "topics",
        "entities",
        "search"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/json"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/topics/suggest?q=machine+learning",
        "https://api.wpnews.pro/api/v1/entities/search?q=OpenAI"
      ]
    },
    {
      "id": "personalised_digest",
      "name": "Custom personalised digest",
      "description": "Cross-topic digest filtered by topics AND/OR entities. Agent-ready: 'AI + security news mentioning Google from last 48h'.",
      "tags": [
        "digest",
        "personalisation",
        "agents"
      ],
      "inputModes": [
        "text"
      ],
      "outputModes": [
        "application/json"
      ],
      "examples": [
        "https://api.wpnews.pro/api/v1/digest/custom?topics=artificial-intelligence,security&entities=Google&hours=48"
      ]
    }
  ],
  "contacts": {
    "email": "api@wpnews.pro",
    "documentation": "https://wpnews.pro/for-llms",
    "api": "https://wpnews.pro/api"
  }
}