{
  "$schema": "https://modelcontextprotocol.io/schema/mcp.json",
  "name": "SPIDITS AI Intelligence MCP",
  "vendor": "SPIDITS AI",
  "version": "1.0.0",
  "description": "Real-Time AI Live News and Market Intelligence Platform. Track latest AI news today, model releases, startup funding, research breakthroughs, and developer signals on SPIDITS AI.",
  "homepage": "https://spidits.com/",
  "icon": "https://spidits.com/logo-icon.png",
  "license": "MIT",
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": true
  },
  "tools": [
    {
      "name": "get_ai_context",
      "description": "Fetch executive BLUF summaries, market takeaways, and concept definitions for any AI or tech topic from SPIDITS AI.",
      "parameters": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string",
            "description": "Topic or search query (e.g., \"OpenAI\", \"Gemini 3.6\", \"Series A funding\", \"transformer architecture\")"
          },
          "limit": {
            "type": "number",
            "description": "Number of context records to return (1-10)",
            "default": 5
          }
        },
        "required": [
          "q"
        ]
      },
      "endpoint": "https://spidits.com/api/ai/v1/context?q={q}&limit={limit}",
      "method": "GET"
    },
    {
      "name": "get_latest_ai_news",
      "description": "Fetch the latest chronological breaking AI timeline events, releases, and venture deals.",
      "parameters": {
        "type": "object",
        "properties": {
          "limit": {
            "type": "number",
            "description": "Maximum number of items to return",
            "default": 10
          }
        }
      },
      "endpoint": "https://spidits.com/api/timeline?limit={limit}",
      "method": "GET"
    }
  ],
  "resources": [
    {
      "uri": "https://spidits.com/feed.xml",
      "name": "SPIDITS AI Main RSS Feed",
      "mimeType": "application/rss+xml",
      "description": "Real-time RSS 2.0 feed of breaking AI news summaries and research posts."
    },
    {
      "uri": "https://spidits.com/feed/ai-news-summary",
      "name": "SPIDITS AI Executive Summary Feed",
      "mimeType": "application/rss+xml",
      "description": "High-speed stream of executive AI news summaries and market takeaways."
    },
    {
      "uri": "https://spidits.com/atom.xml",
      "name": "SPIDITS AI Atom Feed",
      "mimeType": "application/atom+xml",
      "description": "Atom 1.0 specification feed for syndicated readers."
    }
  ],
  "prompts": [
    {
      "name": "daily_ai_briefing",
      "description": "Synthesize a daily executive briefing of top AI releases and startup funding based on SPIDITS AI data.",
      "arguments": [
        {
          "name": "topic",
          "description": "Optional category filter (e.g., \"llm\", \"startups\", \"funding\")",
          "required": false
        }
      ]
    }
  ]
}