{
  "name": "SEC Event Intelligence MCP Evaluation Workflow",
  "description": "Ordered JSON-RPC requests for evaluating the hosted SEC Event Intelligence MCP server before adding production credentials.",
  "endpointUrl": "https://api.data-apis.com/mcp",
  "transport": "streamable-http",
  "contentType": "application/json",
  "publicRequests": [
    {
      "step": 1,
      "label": "Initialize remote MCP server",
      "request": {
        "jsonrpc": "2.0",
        "id": "eval-initialize",
        "method": "initialize",
        "params": {
          "protocolVersion": "2025-11-25",
          "capabilities": {},
          "clientInfo": {
            "name": "sec-event-intelligence-evaluator",
            "version": "1"
          }
        }
      }
    },
    {
      "step": 2,
      "label": "List available tools",
      "request": {
        "jsonrpc": "2.0",
        "id": "eval-tools-list",
        "method": "tools/list"
      }
    },
    {
      "step": 3,
      "label": "List setup prompts",
      "request": {
        "jsonrpc": "2.0",
        "id": "prompts-list",
        "method": "prompts/list"
      }
    },
    {
      "step": 4,
      "label": "Fetch the no-key demo prompt",
      "request": {
        "jsonrpc": "2.0",
        "id": "try-demo-prompt",
        "method": "prompts/get",
        "params": {
          "name": "sec_mcp_try_demo",
          "arguments": {}
        }
      }
    },
    {
      "step": 5,
      "label": "Call the no-key demo tool",
      "request": {
        "jsonrpc": "2.0",
        "id": "demo-latest-filings",
        "method": "tools/call",
        "params": {
          "name": "sec_demo_latest_filings",
          "arguments": {
            "limit": 3
          }
        }
      }
    },
    {
      "step": 6,
      "label": "Return subscription and access links",
      "request": {
        "jsonrpc": "2.0",
        "id": "subscription-info",
        "method": "tools/call",
        "params": {
          "name": "sec_subscription_info",
          "arguments": {}
        }
      }
    }
  ],
  "promptPayloadUrls": {
    "promptsList": "https://api.data-apis.com/downloads/sec-event-intelligence-mcp-prompts-list.json",
    "tryDemoPrompt": "https://api.data-apis.com/downloads/sec-event-intelligence-mcp-try-demo-prompt.json",
    "watchlistPrompt": "https://api.data-apis.com/downloads/sec-event-intelligence-mcp-watchlist-prompt.json"
  },
  "curlRunnerUrl": "https://api.data-apis.com/downloads/sec-event-intelligence-mcp-evaluation-curl.sh",
  "productionAccess": {
    "requiresApiKey": true,
    "headerOptions": [
      "x-api-key",
      "Authorization: Bearer"
    ],
    "accessPageUrl": "https://api.data-apis.com/mcp/access",
    "rapidapiRestUrl": "https://rapidapi.com/autoearnapi/api/sec-event-intelligence"
  },
  "nextSteps": [
    "Run the public requests in order against the endpointUrl.",
    "Use sec_subscription_info to choose REST marketplace checkout or hosted MCP direct access.",
    "Send x-api-key or Authorization: Bearer before production SEC data tools."
  ],
  "usageBoundary": "Data infrastructure only. Responses contain public SEC filing metadata and do not provide investment advice, ratings, or personalized financial guidance."
}