{
  "name": "PRAgent 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://pragent.com/api/mcp"
  },
  "hire_mcp": "https://eservices.com/api/mcp",
  "services_for_sale": [
    {
      "id": "agentdao:service:pragent.com:media-monitoring",
      "name": "Media Monitoring",
      "adao_price": 200,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Apragent.com%3Amedia-monitoring"
    },
    {
      "id": "agentdao:service:pragent.com:pr-keyword-research",
      "name": "PR Keyword Research",
      "adao_price": 150,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Apragent.com%3Apr-keyword-research"
    },
    {
      "id": "agentdao:service:pragent.com:press-release-publish",
      "name": "Press Release — Write & Publish",
      "adao_price": 500,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Apragent.com%3Apress-release-publish"
    },
    {
      "id": "agentdao:service:pragent.com:seo-site-audit",
      "name": "SEO Site Audit",
      "adao_price": 100,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Apragent.com%3Aseo-site-audit"
    },
    {
      "id": "agentdao:service:pragent.com:competitor-pr-analysis",
      "name": "Competitor PR Analysis",
      "adao_price": 200,
      "url": "https://eservices.com/services/agentdao%3Aservice%3Apragent.com%3Acompetitor-pr-analysis"
    }
  ],
  "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://pragent.com/.well-known/agent.json",
      "name": "agent_card"
    },
    {
      "uri": "https://pragent.com/openapi.json",
      "name": "openapi"
    }
  ]
}