{
  "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/server-card.json",
  "serverInfo": {
    "name": "thecodeforge-mcp-server",
    "title": "CODEFORGE TECHNOLOGIES & SOLUTIONS Agent MCP Server",
    "version": "1.0.0",
    "description": "Production MCP Server exposing CODEFORGE TECHNOLOGIES & SOLUTIONS custom software engineering capabilities, service discovery, project cost estimation, and technical advisory tools to AI agents."
  },
  "transport": {
    "type": "sse",
    "url": "https://thecodeforge.in/api/mcp/sse",
    "streamUrl": "https://thecodeforge.in/api/mcp/message"
  },
  "capabilities": {
    "tools": {
      "listChanged": true
    },
    "resources": {
      "subscribe": true,
      "listChanged": true
    },
    "prompts": {
      "listChanged": true
    }
  },
  "tools": [
    {
      "name": "get_services",
      "description": "Retrieve the full catalog of software engineering, blockchain, AI/ML, and ERPNext services provided by CODEFORGE TECHNOLOGIES & SOLUTIONS.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Optional category filter: 'Blockchain & Web3', 'AI & Machine Learning', 'ERPNext & Frappe', 'Custom Web & Mobile', 'OCR Automation', 'Cybersecurity'."
          }
        }
      }
    },
    {
      "name": "estimate_project",
      "description": "Calculate estimated timeline and budget ranges based on technology stack, features, and scale requirements.",
      "inputSchema": {
        "type": "object",
        "required": ["projectType", "requirements"],
        "properties": {
          "projectType": {
            "type": "string",
            "enum": ["web-app", "mobile-app", "blockchain-dapp", "ai-model", "erpnext", "ocr-pipeline"]
          },
          "requirements": {
            "type": "array",
            "items": { "type": "string" },
            "description": "List of core features or modules required."
          },
          "timelineUrgency": {
            "type": "string",
            "enum": ["standard", "expedited", "critical"]
          }
        }
      }
    },
    {
      "name": "get_contact_info",
      "description": "Get verified contact details, business hours, and engagement booking links for CODEFORGE TECHNOLOGIES & SOLUTIONS.",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    }
  ],
  "resources": [
    {
      "uri": "codeforge://services/catalog",
      "name": "Complete Codeforge Services Catalog",
      "mimeType": "application/json",
      "description": "JSON representation of all engineering capabilities, stacks, and case studies."
    },
    {
      "uri": "codeforge://docs/api",
      "name": "Codeforge API Documentation",
      "mimeType": "text/markdown",
      "description": "Full Markdown guide to Codeforge integration APIs and AI Agent entrypoints."
    }
  ],
  "prompts": [
    {
      "name": "architect_project_proposal",
      "description": "Generate a technical project architecture and proposal for a client using Codeforge engineering standards.",
      "arguments": [
        {
          "name": "client_needs",
          "description": "Description of client requirements and business objectives",
          "required": true
        }
      ]
    }
  ]
}
