{
  "serverInfo": {
    "name": "datainfometrix-mcp-server",
    "version": "1.0.0",
    "description": "Model Context Protocol server for Data InfoMetrix B2B technographic intelligence, installed base lookups, and TAM audience generation."
  },
  "transport": "streamable-http",
  "endpoint": "https://datainfometrix.com/api/v1/mcp",
  "capabilities": {
    "tools": [
      {
        "name": "lookup_installed_base",
        "description": "Look up enterprise software installed base counts, company counts, and contact availability by technology name or category.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "technology": {
              "type": "string",
              "description": "Software product name (e.g., 'Salesforce CRM', 'SAP ERP', 'Kubernetes', 'Workday')"
            },
            "category": {
              "type": "string",
              "description": "Optional category filter (e.g., 'CRM', 'ERP', 'DevOps', 'Cybersecurity')"
            }
          },
          "required": ["technology"]
        }
      },
      {
        "name": "calculate_tam",
        "description": "Calculate Total Addressable Market (TAM) company audience and contact yields with firmographic and geographic filters.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "technology": {
              "type": "string",
              "description": "Target software technology"
            },
            "countries": {
              "type": "array",
              "items": { "type": "string" },
              "description": "Target country ISO codes or names (e.g., ['United States', 'United Kingdom'])"
            },
            "employeeRange": {
              "type": "string",
              "description": "Company size filter (e.g., '1-50', '51-200', '201-1000', '1000+')"
            }
          },
          "required": ["technology"]
        }
      },
      {
        "name": "request_sample_dataset",
        "description": "Request a free 10-record verified sample dataset for a specified technology installed base.",
        "inputSchema": {
          "type": "object",
          "properties": {
            "technology": { "type": "string" },
            "workEmail": { "type": "string", "format": "email" },
            "companyName": { "type": "string" },
            "fullName": { "type": "string" }
          },
          "required": ["technology", "workEmail", "companyName", "fullName"]
        }
      }
    ],
    "resources": [
      {
        "uri": "datainfometrix://llms-context",
        "name": "LLMs Structured Technographic Context",
        "mimeType": "text/markdown",
        "description": "Full directory of 710+ tracked technologies and verified company counts."
      }
    ],
    "prompts": [
      {
        "name": "b2b-tam-analysis",
        "description": "Analyze Total Addressable Market and competitor displacement opportunity for enterprise software vendors.",
        "arguments": [
          {
            "name": "product_name",
            "description": "Name of competitor or target technology platform",
            "required": true
          }
        ]
      }
    ]
  }
}
