{
  "name": "ANIME INTELLIGENCE MCP",
  "version": "2.9.15",
  "protocol": "2025-11-25",
  "transport": "streamable-http",
  "endpoint": "https://anime-intelligence.goodmy0312.workers.dev/mcp",
  "tools": [
    {
      "name": "search_anime_product",
      "description": "Free canonical search for Japanese anime figures and collectibles. Use this before paid tools when the exact product is uncertain.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Name, JAN/EAN-13, model number, character, franchise or series.",
            "examples": [
              "Nendoroid Hatsune Miku",
              "4580590123456"
            ]
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ]
          }
        },
        "required": [
          "query"
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "count": {
            "type": "integer"
          },
          "results": {
            "type": "array",
            "items": {
              "type": "object"
            }
          }
        }
      }
    },
    {
      "name": "identify_anime_product",
      "description": "Identify the exact Japanese anime figure or collectible before searching prices or buying. Resolves ambiguous names and editions into a canonical product using JAN/EAN-13, manufacturer data, aliases and official-source evidence. Cheapest paid entry point for agents that need a reliable product identity. Price: 0.005 USDC via x402. Use first when the user gives a product name, character, JAN/EAN-13, model number, series name or an ambiguous collectible description.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name, JAN/EAN-13, model number or identifying description.",
            "examples": [
              "4580590123456",
              "Nendoroid Hatsune Miku",
              "POP UP PARADE Loona L size"
            ]
          },
          "id": {
            "type": "string",
            "description": "ANIME INTELLIGENCE canonical product UUID."
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ],
            "default": "en"
          }
        },
        "anyOf": [
          {
            "required": [
              "query"
            ]
          },
          {
            "required": [
              "id"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "paid_x402_url": {
            "type": "string"
          },
          "payment": {
            "type": "string"
          },
          "price_usdc": {
            "type": "number"
          },
          "intent": {
            "type": "string"
          },
          "expected_output": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true,
        "paid": true,
        "x402": true,
        "price_usdc": 0.005,
        "endpoint": "/v1/identify"
      }
    },
    {
      "name": "anime_market",
      "description": "Get current matched asking-price intelligence for an identified Japanese anime collectible from Yahoo Shopping, eBay and stored market observations. Returns lowest, median and highest prices, offer count, freshness and the best matched listing while rejecting likely identity mismatches. Price: 0.01 USDC via x402. Use after identity is known and the user asks current price, market range, cheapest observed listing or current availability.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name, JAN/EAN-13, model number or identifying description.",
            "examples": [
              "Good Smile Hatsune Miku Nendoroid",
              "4580590123456"
            ]
          },
          "id": {
            "type": "string",
            "description": "ANIME INTELLIGENCE canonical product UUID."
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ],
            "default": "en"
          }
        },
        "anyOf": [
          {
            "required": [
              "query"
            ]
          },
          {
            "required": [
              "id"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "paid_x402_url": {
            "type": "string"
          },
          "payment": {
            "type": "string"
          },
          "price_usdc": {
            "type": "number"
          },
          "intent": {
            "type": "string"
          },
          "expected_output": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true,
        "paid": true,
        "x402": true,
        "price_usdc": 0.01,
        "endpoint": "/v1/market"
      }
    },
    {
      "name": "anime_rarity",
      "description": "Estimate scarcity and rerelease risk for a Japanese anime collectible using current matched supply, price premium, release age, limited-edition metadata and known rerelease information. Price: 0.01 USDC via x402. Use when the user asks whether an item is rare, hard to find, limited, likely to appreciate, or exposed to rerelease risk.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name, JAN/EAN-13, model number or identifying description.",
            "examples": [
              "limited Megahouse figure",
              "Nendoroid 1000"
            ]
          },
          "id": {
            "type": "string",
            "description": "ANIME INTELLIGENCE canonical product UUID."
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ],
            "default": "en"
          }
        },
        "anyOf": [
          {
            "required": [
              "query"
            ]
          },
          {
            "required": [
              "id"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "paid_x402_url": {
            "type": "string"
          },
          "payment": {
            "type": "string"
          },
          "price_usdc": {
            "type": "number"
          },
          "intent": {
            "type": "string"
          },
          "expected_output": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true,
        "paid": true,
        "x402": true,
        "price_usdc": 0.01,
        "endpoint": "/v1/rarity"
      }
    },
    {
      "name": "anime_authenticity",
      "description": "Assess counterfeit, bootleg and suspicious-listing risk before an AI agent recommends or purchases a Japanese anime figure. Uses canonical identity, official references, MSRP relationships and matched listing signals. Price: 0.02 USDC via x402. Use when the user is worried about bootlegs, suspiciously cheap listings, missing official references or risky marketplace offers.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name, JAN/EAN-13, model number or identifying description.",
            "examples": [
              "Is this figure likely authentic?",
              "cheap Nendoroid listing"
            ]
          },
          "id": {
            "type": "string",
            "description": "ANIME INTELLIGENCE canonical product UUID."
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ],
            "default": "en"
          }
        },
        "anyOf": [
          {
            "required": [
              "query"
            ]
          },
          {
            "required": [
              "id"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "paid_x402_url": {
            "type": "string"
          },
          "payment": {
            "type": "string"
          },
          "price_usdc": {
            "type": "number"
          },
          "intent": {
            "type": "string"
          },
          "expected_output": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true,
        "paid": true,
        "x402": true,
        "price_usdc": 0.02,
        "endpoint": "/v1/authenticity"
      }
    },
    {
      "name": "anime_buy_wait",
      "description": "Return BUY, WAIT, WATCH or AVOID for an identified anime collectible using current price, MSRP, availability, rarity, rerelease risk and authenticity signals. Includes purchase routing so an agent can continue directly to a buying decision. Price: 0.02 USDC via x402. Use when the user asks whether to buy now, wait for a lower price, watch the market or avoid the item.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name, JAN/EAN-13, model number or identifying description.",
            "examples": [
              "Should I buy this Nendoroid now?",
              "buy or wait for this limited figure"
            ]
          },
          "id": {
            "type": "string",
            "description": "ANIME INTELLIGENCE canonical product UUID."
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ],
            "default": "en"
          }
        },
        "anyOf": [
          {
            "required": [
              "query"
            ]
          },
          {
            "required": [
              "id"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "paid_x402_url": {
            "type": "string"
          },
          "payment": {
            "type": "string"
          },
          "price_usdc": {
            "type": "number"
          },
          "intent": {
            "type": "string"
          },
          "expected_output": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true,
        "paid": true,
        "x402": true,
        "price_usdc": 0.02,
        "endpoint": "/v1/buy-wait"
      }
    },
    {
      "name": "best_place",
      "description": "Find the best currently observed purchase route for an identified Japanese anime collectible across supported marketplace observations, prioritizing identity match quality, total price, seller information and freshness. Price: 0.03 USDC via x402. Use when the user has decided to buy and asks where to buy, cheapest matched listing or best purchase route.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name, JAN/EAN-13, model number or identifying description.",
            "examples": [
              "Where should I buy Nendoroid Hatsune Miku?",
              "best place to buy 4580590123456"
            ]
          },
          "id": {
            "type": "string",
            "description": "ANIME INTELLIGENCE canonical product UUID."
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ],
            "default": "en"
          }
        },
        "anyOf": [
          {
            "required": [
              "query"
            ]
          },
          {
            "required": [
              "id"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "paid_x402_url": {
            "type": "string"
          },
          "payment": {
            "type": "string"
          },
          "price_usdc": {
            "type": "number"
          },
          "intent": {
            "type": "string"
          },
          "expected_output": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true,
        "paid": true,
        "x402": true,
        "price_usdc": 0.03,
        "endpoint": "/v1/best-place"
      }
    },
    {
      "name": "full_intelligence",
      "description": "Complete decision package for a Japanese anime collectible: exact identity, current market, rarity, rerelease status, authenticity risk, BUY-WAIT decision and best purchase route. Highest-value endpoint for autonomous agents that want one final purchase recommendation. Price: 0.05 USDC via x402. Use when the agent needs identity, market, rarity, authenticity, timing and purchase route together instead of calling individual endpoints.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "description": "Product name, JAN/EAN-13, model number or identifying description.",
            "examples": [
              "Full intelligence for Nendoroid Hatsune Miku",
              "Should I buy this exact figure and where?"
            ]
          },
          "id": {
            "type": "string",
            "description": "ANIME INTELLIGENCE canonical product UUID."
          },
          "lang": {
            "type": "string",
            "enum": [
              "ja",
              "en",
              "zh",
              "ko"
            ],
            "default": "en"
          }
        },
        "anyOf": [
          {
            "required": [
              "query"
            ]
          },
          {
            "required": [
              "id"
            ]
          }
        ]
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "paid_x402_url": {
            "type": "string"
          },
          "payment": {
            "type": "string"
          },
          "price_usdc": {
            "type": "number"
          },
          "intent": {
            "type": "string"
          },
          "expected_output": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "annotations": {
        "readOnlyHint": true,
        "destructiveHint": false,
        "idempotentHint": true,
        "openWorldHint": true,
        "paid": true,
        "x402": true,
        "price_usdc": 0.05,
        "endpoint": "/v1/full-intelligence"
      }
    }
  ]
}