{
  "name": "firmadapt",
  "display_name": "FirmAdapt - AI Company Analysis",
  "description": "AI-powered equity research, faith-based compliance screening, and company analysis across 12 global markets.",
  "version": "1.0.0",
  "api_base_url": "https://firmadapt.com",
  "documentation_url": "https://firmadapt.com/api-docs",
  "openapi_url": "https://firmadapt.com/api/openapi.json",
  "llms_txt_url": "https://firmadapt.com/llms.txt",
  "free_tier": {
    "enabled": true,
    "rate_limit": "10 requests per week per IP",
    "auth_required": false,
    "base_path": "/api/v1/open"
  },
  "installation": {
    "pip": "pip install firmadapt-mcp",
    "uvx": "uvx firmadapt-mcp",
    "claude_desktop_config": {
      "mcpServers": {
        "firmadapt": {
          "command": "python",
          "args": [
            "-m",
            "firmadapt_mcp"
          ],
          "env": {
            "FIRMADAPT_API_URL": "https://firmadapt.com"
          }
        }
      }
    }
  },
  "tools": [
    {
      "name": "search_companies",
      "description": "Search for companies by ticker symbol or company name",
      "endpoint": "GET /api/v1/open/faith/search?q={query}&market={market}",
      "auth_required": false
    },
    {
      "name": "get_company_profile",
      "description": "Get company profile with market data (name, sector, industry, market cap, price)",
      "endpoint": "GET /api/v1/open/company/profile/{ticker}",
      "auth_required": false
    },
    {
      "name": "faith_screen",
      "description": "Screen a stock for faith-based compliance (Shariah, Christian, Catholic, Jewish, LDS, ESG)",
      "endpoint": "GET /api/v1/open/faith/screen/{ticker}?frameworks={frameworks}&market={market}",
      "auth_required": false
    },
    {
      "name": "list_faith_frameworks",
      "description": "List all 9 available faith-based screening frameworks with details",
      "endpoint": "GET /api/v1/open/faith/frameworks",
      "auth_required": false
    },
    {
      "name": "check_rate_limit",
      "description": "Check remaining anonymous API requests for this IP",
      "endpoint": "GET /api/v1/open/status",
      "auth_required": false
    }
  ],
  "supported_markets": [
    "us",
    "uk",
    "germany",
    "france",
    "japan",
    "india",
    "saudi",
    "uae",
    "malaysia",
    "indonesia",
    "canada",
    "australia"
  ],
  "supported_frameworks": [
    "shariah_aaoifi",
    "shariah_sp",
    "shariah_custom",
    "christian_bri",
    "catholic_usccb",
    "jewish_halakhic",
    "lds_mormon",
    "esg_religious",
    "evangelical"
  ]
}