我們幫 AI 找到你 — 基於 78 萬筆真實爬蟲數據的診斷與治療
在上方貼上網址,按「檢查」就好。
回傳 JSON 報告。
curl -X POST https://aeo.washinmura.jp/api/v1/crawl-check \
-H 'Content-Type: application/json' \
-d '{"url":"example.com"}'
在 settings.json 加 MCP 伺服器:
{
"mcpServers": {
"crawl-check": {
"url": "https://aeo.washinmura.jp/mcp/crawl-check"
}
}
}
MCP 設定跟 Claude Code 一樣。加到 settings.json:
{
"mcpServers": {
"crawl-check": {
"url": "https://aeo.washinmura.jp/mcp/crawl-check"
}
}
}
codex exec "curl -s -X POST \
https://aeo.washinmura.jp/api/v1/crawl-check \
-H 'Content-Type: application/json' \
-d '{\"url\":\"example.com\"}' | jq ."
gemini -p "Analyze: $(curl -s -X POST \
https://aeo.washinmura.jp/api/v1/crawl-check \
-H 'Content-Type: application/json' \
-d '{"url":"example.com"}')"
加到 MCP 設定,跟龍蝦說「幫我檢查 example.com」。
{
"crawl-check": {
"url": "https://aeo.washinmura.jp/mcp/crawl-check"
}
}
把以下內容貼到 ChatGPT:
幫我分析這個網站的 AI 搜尋優化:POST {"url":"目標網站.com"} 到 https://aeo.washinmura.jp/api/v1/crawl-check 然後解釋結果
在 Perplexity 搜尋:
aeo.washinmura.jp crawl-check AI 爬蟲健檢工具怎麼用
import requests
r = requests.post(
"https://aeo.washinmura.jp/api/v1/crawl-check",
json={"url": "example.com"}
)
data = r.json()
print(f"Score: {data['score']}/100 Grade: {data['grade']}")
for c in data.get("crawlers", []):
icon = "✅" if c["can_enter"] else "❌"
print(f" {icon} {c['name']}")
const res = await fetch(
"https://aeo.washinmura.jp/api/v1/crawl-check",
{
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ url: "example.com" }),
}
);
const data = await res.json();
console.log("Score: " + data.score + "/100 Grade: " + data.grade);
data.crawlers?.forEach(c =>
console.log(" " + (c.can_enter ? "✅" : "❌") + " " + c.name)
);