Skip to main content
Glama

sec_stats

Retrieve SEC filing statistics including total filings, form type breakdowns, date ranges, and update timestamps from the Verilex Data MCP server.

Instructions

Get statistics about the SEC filings dataset: total filings, form type breakdown, date range, and last updated timestamp. Free endpoint, no payment required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The registration and handler implementation for the "sec_stats" tool.
    server.registerTool(
      "sec_stats",
      {
        title: "SEC Dataset Statistics",
        description:
          "Get statistics about the SEC filings dataset: total filings, form type breakdown, " +
          "date range, and last updated timestamp. Free endpoint, no payment required.",
        inputSchema: {},
      },
      async () => {
        const res = await apiGet<SecStatsResponse>("/api/v1/sec/stats");
    
        if (!res.ok) {
          return {
            content: [
              {
                type: "text" as const,
                text: `API error (${res.status}): ${JSON.stringify(res.data)}`,
              },
            ],
            isError: true,
          };
        }
    
        return {
          content: [
            { type: "text" as const, text: JSON.stringify(res.data, null, 2) },
          ],
        };
      },
    );
  • Schema/Interface for the "sec_stats" response.
    interface SecStatsResponse {
      dataset: string;
      source: string;
      update_frequency: string;
      stats: Record<string, unknown>;
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/carrierone/verilexdata-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server