{
  "name": "go-orca-tools",
  "description": "Go-Orca.Tech MCP server exposing CRM calculators and cost estimation tools for AI agents.",
  "version": "1.0.0",
  "serverUrl": "https://go-orca.tech/api/mcp",
  "registry": "https://smithery.ai/server/@go-orca/api-mcp",
  "registryUrl": "https://mcp.smithery.run/go-orca",
  "serverInfo": {
    "name": "go-orca-tools",
    "version": "1.0.0",
    "description": "Go-Orca.Tech MCP server exposing CRM calculators and cost estimation tools for AI agents.",
    "homepage": "https://go-orca.tech",
    "contact": "hello@go-orca.tech"
  },
  "transport": {
    "type": "http",
    "endpoint": "https://go-orca.tech/api/mcp"
  },
  "capabilities": {
    "tools": true,
    "resources": false,
    "prompts": false
  },
  "tools": [
    {
      "name": "calculate_crm_roi",
      "description": "Calculate the ROI of implementing a custom CRM. Provide current tool costs, team size, and hours lost per week to get annual savings and payback period.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "team_size": { "type": "number", "description": "Number of people using the CRM" },
          "hours_per_week_lost": { "type": "number", "description": "Hours lost per person per week due to inefficient tools" },
          "average_hourly_rate": { "type": "number", "description": "Average hourly cost per employee (USD)" },
          "monthly_tool_costs": { "type": "number", "description": "Current monthly spend on CRM/tools (USD)" },
          "crm_investment": { "type": "number", "description": "One-time CRM build investment (USD)" }
        },
        "required": ["team_size", "hours_per_week_lost", "average_hourly_rate", "crm_investment"]
      }
    },
    {
      "name": "estimate_crm_cost",
      "description": "Estimate the cost to build a custom CRM based on team size, required modules, and desired timeline.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "team_size": { "type": "number" },
          "modules": { "type": "array", "items": { "type": "string" }, "description": "e.g. ['pipeline', 'contacts', 'inbox', 'reports']" },
          "integrations_count": { "type": "number" },
          "rush": { "type": "boolean" }
        },
        "required": ["team_size", "modules"]
      }
    },
    {
      "name": "get_quote_url",
      "description": "Returns the URL to request a fixed-price custom software quote from Go-Orca.Tech.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "context": { "type": "string", "description": "Optional context about what the user wants to build" }
        }
      }
    }
  ]
}
