{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card.json",
  "name": "Alpha Terminal",
  "title": "Alpha Terminal",
  "version": "2.3.0",
  "description": "Read-only AI governance intelligence over MCP from Alpha Governance Group PBC. Public discovery requires no authentication: search and retrieve governed public company and executive profiles, current roles, claim evidence, profile changes, platform metadata, and published methodology. Premium Alpha Platform capabilities require approved access and a current entitlement.",
  "serverUrl": "https://mcp.alpha.ac/mcp",
  "websiteUrl": "https://www.alpha.ac/mcp",
  "documentationUrl": "https://www.alpha.ac/docs/api",
  "icons": [
    {
      "src": "https://www.alpha.ac/brand/alpha-favicon.svg",
      "mimeType": "image/svg+xml",
      "sizes": ["any"]
    }
  ],
  "publisher": {
    "name": "Alpha Governance Group PBC",
    "url": "https://www.alpha.ac",
    "contact": "mailto:hello@alpha.ac"
  },
  "serverInfo": {
    "name": "Alpha Terminal",
    "version": "2.3.0",
    "registryVersion": "2026-08-18.1"
  },
  "documentation": "https://www.alpha.ac/docs/api",
  "transport": {
    "type": "streamable-http",
    "url": "https://mcp.alpha.ac/mcp",
    "sse": "https://mcp.alpha.ac/sse"
  },
  "metadata": {
    "url": "https://api.alpha.ac/functions/v1/mcp-server",
    "health": "https://mcp.alpha.ac/health",
    "productPage": "https://www.alpha.ac/mcp",
    "agentInstructions": "https://www.alpha.ac/agents.md",
    "openapi": "https://www.alpha.ac/openapi.json",
    "productAccess": "https://www.alpha.ac/api/public/product-access",
    "authCapabilities": "https://www.alpha.ac/api/public/auth-capabilities",
    "availabilityPage": "https://www.alpha.ac/products/access",
    "capabilityStatus": "https://www.alpha.ac/api/public/agent-readiness"
  },
  "capabilities": {
    "tools": true,
    "resources": true,
    "prompts": true
  },
  "tools": [
    {
      "name": "find_person",
      "description": "Search Alpha's permission-safe public Profile directory. Returns canonical Alpha person IDs, evidence-backed current roles, assurance state, review time, and limitations. Similar names remain separate candidates.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "minLength": 2,
            "description": "Person name to search for."
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "maximum": 50,
            "default": 20
          }
        },
        "required": ["query"]
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": false
      }
    },
    {
      "name": "get_claim_evidence",
      "description": "Retrieve the public source evidence for one permissioned Alpha Profile claim. Returns source tier, URLs, validity, confidence, review time, and limitations.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "alpha_person_id": {
            "type": "string",
            "format": "uuid"
          },
          "claim_id": {
            "type": "string",
            "format": "uuid"
          }
        },
        "required": ["alpha_person_id", "claim_id"]
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": false
      }
    },
    {
      "name": "get_company_profile",
      "description": "Retrieve a public Alpha Company Profile with canonical company identity, active listings, current confirmed board and executive roles, source evidence, explicit permissions, as-of time, and limitations. Private relationships, company administration, and unpublished ratings are excluded.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "alpha_company_id": {
            "type": "string",
            "format": "uuid",
            "description": "Immutable Alpha company ID."
          },
          "slug": {
            "type": "string",
            "description": "Public Alpha Company Profile slug."
          }
        },
        "anyOf": [
          {
            "required": ["alpha_company_id"]
          },
          {
            "required": ["slug"]
          }
        ]
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": false
      }
    },
    {
      "name": "get_current_roles",
      "description": "Retrieve the current confirmed company and board roles from a public Alpha Profile. Every role includes available source evidence, confidence, verification state, and validity.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "alpha_person_id": {
            "type": "string",
            "format": "uuid"
          },
          "slug": {
            "type": "string"
          }
        },
        "anyOf": [
          {
            "required": ["alpha_person_id"]
          },
          {
            "required": ["slug"]
          }
        ]
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": false
      }
    },
    {
      "name": "get_executive_profile",
      "description": "Retrieve a public Alpha Profile with canonical identity, current verified roles, permissioned claims, claim-level evidence, assurance state, as-of time, and limitations. Private contact, Council activity, and relationships are excluded.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "alpha_person_id": {
            "type": "string",
            "format": "uuid",
            "description": "Immutable Alpha person ID."
          },
          "slug": {
            "type": "string",
            "description": "Public Alpha Profile slug."
          }
        },
        "anyOf": [
          {
            "required": ["alpha_person_id"]
          },
          {
            "required": ["slug"]
          }
        ]
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": false
      }
    },
    {
      "name": "get_platform_stats",
      "description": "Get Alpha platform statistics and data coverage. Returns counts of companies, directors, ratings, filings, and regulations in the Alpha intelligence database.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": false
      }
    }
  ],
  "resources": [
    {
      "uri": "alpha://methodology/overview",
      "name": "Alpha public methodology and agent entry points",
      "description": "Public read-only entry points for the Alpha Standard, methodology, governed Profiles, agent instructions, and machine discovery.",
      "mimeType": "application/json"
    }
  ],
  "access": {
    "free": {
      "description": "Public read-only tools support company and executive profile search, governed profile retrieval, current roles, claim evidence, profile changes, platform metadata, and published methodology discovery.",
      "authentication": "none"
    },
    "premium": {
      "description": "Premium Alpha Platform tools require approved access and a current Alpha Platform entitlement. OAuth-capable clients authorize through WorkOS; active Alpha API keys remain supported during the migration.",
      "contact": "mailto:hello@alpha.ac",
      "authentication": "approved_credentials (oauth2 via WorkOS; active API keys during migration)",
      "commercialTerms": "Commercial terms available on request. See https://www.alpha.ac/products/access."
    }
  },
  "capabilitiesDisclosure": "The public MCP endpoint enumerates alpha://methodology/overview through resources/list and serves it through resources/read without authentication. It remains read-only and does not expose private TrustChecks or Receipts. The authenticated test governance transaction is currently an HTTP preview described by https://www.alpha.ac/openapi.json and https://www.alpha.ac/.well-known/agent-skills/skills/governance-transaction-test.md; no MCP transaction tool is claimed until the existing gateway implements equivalent authorization. Verify the live protocol response at https://mcp.alpha.ac/mcp.",
  "protocolVersion": "2025-03-26",
  "protocolCapabilities": {
    "tools": {
      "listChanged": false
    },
    "resources": {
      "subscribe": false,
      "listChanged": false
    },
    "prompts": {
      "listChanged": false
    }
  },
  "prompts": [
    {
      "name": "ai_governance_board_brief",
      "description": "Generate a board-ready AI governance briefing for a specific company. Produces a structured briefing covering governance score, dimension analysis, key risks, peer benchmarking, and recommended board actions. Output follows the Alpha BoardBrief format.",
      "arguments": [
        {
          "name": "ticker",
          "description": "Stock ticker symbol (e.g., AAPL, MSFT)",
          "required": true
        },
        {
          "name": "focus_area",
          "description": "Optional focus: regulatory, safety, oversight, disclosure, workforce",
          "required": false
        }
      ]
    },
    {
      "name": "audit_committee_ai_risk_memo",
      "description": "Draft an audit committee memo on AI-related risks for a company. Covers algorithmic risk exposure, data governance gaps, third-party AI vendor risks, model risk management, and recommended controls. Formatted for board committee consumption.",
      "arguments": [
        {
          "name": "ticker",
          "description": "Stock ticker symbol",
          "required": true
        }
      ]
    },
    {
      "name": "director_gap_analysis",
      "description": "Assess a company's board for AI governance expertise gaps. Analyzes current director skills against The Alpha Standard governance dimensions, identifies missing competencies, recommends director profiles to recruit, and benchmarks AI expertise ratio against sector peers.",
      "arguments": [
        {
          "name": "ticker",
          "description": "Stock ticker symbol",
          "required": true
        }
      ]
    },
    {
      "name": "governance_comparison_brief",
      "description": "Generate a comparative governance analysis across multiple companies. Produces a ranked briefing with dimension-level comparisons, leader/laggard identification, and strategic insights for board discussion or investor analysis.",
      "arguments": [
        {
          "name": "tickers",
          "description": "Comma-separated ticker symbols (e.g., AAPL,MSFT,GOOGL)",
          "required": true
        }
      ]
    },
    {
      "name": "regulatory_readiness_assessment",
      "description": "Evaluate a company's preparedness for AI regulations. Maps the company's current governance posture against EU AI Act, SEC requirements, and state laws. Returns compliance gaps, enforcement timelines, penalty exposure, and a prioritized board action checklist.",
      "arguments": [
        {
          "name": "ticker",
          "description": "Stock ticker symbol",
          "required": true
        },
        {
          "name": "jurisdiction",
          "description": "Focus jurisdiction: EU, US, UK, or all (default: all)",
          "required": false
        }
      ]
    }
  ],
  "resourceTemplates": [
    {
      "uriTemplate": "alpha://benchmark/{sector}",
      "name": "Sector Benchmark",
      "description": "AI governance benchmarking data for a sector. Returns rated companies with scores, grades, and trajectory for peer comparison.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://boardroom/companies/{alpha_company_id}",
      "name": "Public Boardroom Company Profile",
      "description": "Permission-safe governed public company record with immutable Alpha company ID, leadership, evidence, freshness, permissions, limitations, and canonical JSON-LD.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://boardroom/people/{alpha_person_id}",
      "name": "Public Boardroom Executive Profile",
      "description": "Permission-safe governed public executive record with immutable Alpha person ID, roles, claims, evidence, assurance, freshness, permissions, limitations, and canonical JSON-LD.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://companies/{slug}",
      "name": "Public Alpha Profile (company, canonical slug)",
      "description": "Public alias of alpha://boardroom/companies/{alpha_company_id} keyed by the canonical public slug (alpha:company:{slug}). Same governed document, same rights block; free-tier public read.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://company/{ticker}/ai-governance-profile",
      "name": "AI Governance Profile",
      "description": "Full AI governance profile including Alpha Governance Score, The Alpha Standard dimension scores, materiality, and filing evidence.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://company/{ticker}/board",
      "name": "Board Composition",
      "description": "Board composition for a company. Returns directors, roles, committee assignments, independence, tenure, and AI expertise indicators.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://company/{ticker}/committees",
      "name": "Committee Structure",
      "description": "Board committee structure and membership. Returns committee composition with chairs, AI oversight assignments, and Committee Accountability Mapping.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://company/{ticker}/filings",
      "name": "Filing Evidence",
      "description": "SEC filing evidence for a company's AI governance. Returns filings with AI mention counts, governance keywords, and dimensions addressed.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://company/{ticker}/risk-score",
      "name": "Risk Score",
      "description": "AI governance risk score with grade, governance debt level, and red flags from The Alpha Standard assessment.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://director/{name}/profile",
      "name": "Director Intelligence Profile",
      "description": "Full AI governance intelligence profile for a board director. Returns AGIQ score, board seats with legacy governance-grade context, committee assignments, governance gaps, executive compensation AI-governance ties, and a governed interpretation. Published ALPHA v1.0 opinions require their complete disclosure blocks.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://evidence/{organization_id}/{evidence_id}",
      "name": "Alpha Trust Fabric Evidence",
      "description": "Organization-scoped evidence metadata with provenance, freshness, confidence dimensions, control mappings, human review, and immutable governance-event lineage. Requires an entitled identity linked to the organization.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://people/{slug}",
      "name": "Public Alpha Profile (person, canonical slug)",
      "description": "Public alias of alpha://boardroom/people/{alpha_person_id} keyed by the canonical public slug (alpha:person:{slug}). Same governed document, same rights block; free-tier public read.",
      "mimeType": "application/json"
    },
    {
      "uriTemplate": "alpha://regulations/{region}",
      "name": "Regulatory Intelligence",
      "description": "AI governance regulations for a jurisdiction. Includes status, enforcement dates, penalties, and board impact summaries.",
      "mimeType": "application/json"
    }
  ],
  "templateDiscovery": "resources/list.resourceTemplates (legacy; standard method unavailable)"
}
