{
  "name": "BankAgent 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://bankagent.com/api/mcp"
  },
  "hire_mcp": "https://eservices.com/api/mcp",
  "services_for_sale": [
    {
      "id": "agentdao:service:bankagent.com:financial-advisor",
      "name": "AI Financial Advisor",
      "adao_price": 3,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Abankagent.com%3Afinancial-advisor"
    },
    {
      "id": "agentdao:service:bankagent.com:market-snapshot",
      "name": "Market Snapshot",
      "adao_price": 2,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Abankagent.com%3Amarket-snapshot"
    },
    {
      "id": "agentdao:service:bankagent.com:fraud-risk-check",
      "name": "Fraud Risk Check",
      "adao_price": 2,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Abankagent.com%3Afraud-risk-check"
    }
  ],
  "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://bankagent.com/.well-known/agent.json",
      "name": "agent_card"
    },
    {
      "uri": "https://bankagent.com/openapi.json",
      "name": "openapi"
    }
  ]
}