AV女優判定AI
Server Details
日本の成人向け作品 (18歳以上) の出演者・作品検索。画像からの出演者判定はサイトで発行する認証コードが必要。
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 2 tools
The two tools serve completely distinct functions: one performs image-based face recognition for actress identification, the other performs keyword-based database search. No overlap or ambiguity exists between them.
Both tool names are lowercase, snake_case verbs (identify_actress, search) that accurately describe their actions. The naming style is consistent, though it doesn't follow a verb_noun pattern, the uniformity is clear.
With only 2 tools, the server feels thin for its stated purpose. While the scope is narrow (identification and search), the count is borderline acceptable but could benefit from additional tools like actress profile retrieval or verification status checks.
The server covers its core identification feature and adds a useful search capability. The only minor gap is lack of a dedicated tool to fetch detailed actress information directly, though search already returns actress pages on exact match, mitigating this gap.
Available Tools
2 toolsidentify_actress画像から出演女優を判定ARead-onlyInspect
画像 (base64) に写っている顔から、出演 AV 女優の候補を類似度が高い順に返します。本ツールの利用には、人間が連携ページ https://ai-for-av.com/ai-assistant で認証 (Cloudflare Turnstile) を解いて取得した認証コード (verification_code) が必要です。コードが無い場合はユーザーに連携ページを開いてコードを取得し、貼り付けてもらってください (有効期限 30 分、1 コードで最大 10 回まで判定可能)。画像は判定後すぐに破棄され保存されません。
| Name | Required | Description | Default |
|---|---|---|---|
| image_base64 | Yes | 判定する画像 (JPG / PNG / WebP / HEIC / HEIF、5MiB 以下) の base64 文字列。data URL 形式 (data:image/jpeg;base64,...) も可。 | |
| verification_code | No | 人間が連携ページで認証を解いて取得した認証コード。無い場合はユーザーに取得を案内してください (連携ページの URL はツール説明を参照)。 |
Output Schema
| Name | Required | Description |
|---|---|---|
| notice | Yes | |
| results | Yes | |
| has_results | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
readOnlyHint=trueというアノテーションに加え、「画像は判定後すぐに破棄され保存されない」「認証コードは30分有効・最大10回利用可能」という運用上の重要情報が説明されている。アノテーションだけでは分からない認証要件やデータ保持ポリシーを追加で開示しており、安全性の理解に貢献している。
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
目的、認証要件、データ破棄ポリシーという重要な情報が順序立てて1段落にまとめられており、冗長な表現がない。全体として簡潔でありながら必要な情報が欠落していない。
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
出力スキーマが存在するため戻り値の説明は不要であり、認証フロー、利用制限、データライフサイクルまで含めて、このツールを正しく呼び出すために必要な情報が全て揃っている。複雑な認証依存型ツールとして十分に完成度が高い。
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
スキーマのパラメータ説明が既に100%網羅されており、画像形式・サイズ制限・data URLの許容などが詳細に記載されている。ツール説明は認証コードの必要性を強調しているが、パラメータの意味自体はスキーマの情報を補完する以上の付加価値を提供していない。
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
「画像から出演AV女優の候補を類似度が高い順に返す」と、動詞・対象・出力形式が明確に定義されている。姉妹ツールの「search」と異なり、画像入力に基づく判定であることが明示されており、区別が可能。
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
認証コードが無い場合の案内手順と、コードの有効期限・利用回数制限が具体的に示されており、利用条件が明確。ただし、姉妹ツール「search」との使い分けや代替手段については言及がなく、排他的な利用条件は示されていない。
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search作品・女優を検索ARead-onlyInspect
AV女優判定AI のデータベース (FANZA ビデオ / FANZA 素人 / MGS 動画) をキーワード検索します。作品タイトル・品番・メーカー名・女優名で検索でき、女優名に完全一致した場合は女優ページも返します。認証は不要です。結果の URL は本サイトの作品 / 女優ページです。
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ページ番号 (1 始まり、最大 100)。省略時は 1。 | |
| floor | No | 絞り込むフロア。'a' = FANZAビデオ, 'c' = FANZA素人, 'mgs' = MGS動画。省略時は全フロア。 | |
| query | Yes | 検索語 (女優名 / 作品タイトル / 品番 / メーカー名など)。100 文字以内。 |
Output Schema
| Name | Required | Description |
|---|---|---|
| page | Yes | |
| floor | No | |
| query | Yes | |
| notice | Yes | |
| contents | Yes | |
| actresses | Yes | |
| total_hits | Yes | |
| floor_counts | No | |
| has_next_page | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint=true, so the read-only nature is covered. The description adds useful behavioral context beyond that: no authentication required, exact actress-name matches return an actress page, and result URLs point to this site's work/actress pages. This is helpful without contradicting the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is four short, information-dense sentences. It front-loads the database scope and search capability, then adds the exact-match exception, authentication note, and URL behavior. Every sentence earns its place with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a 3-parameter search tool with a full output schema and readOnly annotation, the description covers everything an agent needs to invoke it correctly: query scope, floor options, exact-match behavior, authentication requirements, and result URL semantics. The pagination limit and floor code meanings are already present in the input schema, so no critical gaps remain.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds extra semantics by explaining what kinds of queries are valid (title, product number, manufacturer, actress name), the exact-match behavior, and the database coverage behind the 'floor' parameter. These details go beyond the raw schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb (keyword search), a concrete resource (the AV actress identification AI database over three named stores), and enumerates the searchable fields: title, product number, manufacturer, and actress name. It also distinguishes itself by noting the exact-match actress-page behavior, which helps separate it from identify_actress even though that sibling is not named.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context for when to use the tool: any keyword search across the specified database, with optional floor filtering. It does not explicitly say when not to use it or compare it to identify_actress, so it falls short of the top score, but the supported use cases are sufficiently clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- First observed
identify_actress - First observed
search
Related MCP Connectors
AI adult image, character and movie generator (18+). Characters, images, videos, movies, credits.
Search adult porn video (NSFW, 18+): nude clips, creators, hashtags. Read-only, no API key.
Search adult porn video (NSFW, 18+): nude clips, creators, hashtags. Read-only, no API key.
Search adult porn video (NSFW, 18+): nude clips, creators, hashtags. Read-only, no API key.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceIdentifies anime characters and works from illustrations, and traces back to Pixiv originals, artists, or animation screenshots using vision models and SauceNAO/Trace.moe.-
- AlicenseNot gradedqualityCmaintenanceEnables searching local images using natural Japanese queries, leveraging a Japanese-specific CLIP model for similarity search and providing efficient caching and fast retrieval via MCP and HTTP endpoints.MIT
- AlicenseAqualityAmaintenanceSearches and retrieves Japanese national legislation from the official e-Gov API, providing verifiable citations with stable URLs and human-readable references.632 PyPIApache 2.0
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to perform ultra-fast web scraping and deep search, browser automation, and access to Japanese daily infrastructure data such as weather forecasts, transit routing, news, real-time X/Twitter posts, and Yahoo! Chiebukuro through a unified MCP/REST server.83 npmGPL 3.0
Glama MCP Gateway
Add one secure layer between your agents and this server.