{
  "name": "SupportAgent AgentDAO MCP",
  "version": "1.0.0",
  "description": "MCP-compatible tool manifest for AgentDAO deployed agents. Skills are sold on eServices.",
  "transport": {
    "type": "http",
    "url": "https://supportagent.com/api/mcp"
  },
  "hire_mcp": "https://eservices.com/api/mcp",
  "services_for_sale": [
    {
      "id": "agentdao:service:supportagent.com:create-support-site",
      "name": "Create Support Site",
      "adao_price": 500,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Asupportagent.com%3Acreate-support-site"
    },
    {
      "id": "agentdao:service:supportagent.com:ai-ticket-response",
      "name": "AI Ticket Response",
      "adao_price": 100,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Asupportagent.com%3Aai-ticket-response"
    },
    {
      "id": "agentdao:service:supportagent.com:kb-refresh",
      "name": "Knowledge Base Refresh",
      "adao_price": 100,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Asupportagent.com%3Akb-refresh"
    }
  ],
  "tools": [
    {
      "name": "execute_skill",
      "description": "Execute a skill via /api/execute",
      "inputSchema": {
        "type": "object",
        "required": [
          "intent"
        ],
        "properties": {
          "intent": {
            "type": "string"
          },
          "input": {
            "type": "object"
          }
        }
      }
    },
    {
      "name": "llm_chat",
      "description": "Provider-agnostic chat via llm.chat",
      "inputSchema": {
        "type": "object",
        "required": [
          "messages"
        ],
        "properties": {
          "messages": {
            "type": "array"
          },
          "providerPreference": {
            "type": "string",
            "enum": [
              "openai",
              "anthropic",
              "google"
            ]
          }
        }
      }
    }
  ],
  "resources": [
    {
      "uri": "https://supportagent.com/.well-known/agent.json",
      "name": "agent_card"
    },
    {
      "uri": "https://supportagent.com/openapi.json",
      "name": "openapi"
    }
  ]
}