ถาม AI ของยกด่วน — ตอบทันที 24 ชม.
ยกด่วนเปิด AI Agent อย่างเป็นทางการสำหรับทั้งผู้ใช้และ AI ภายนอก (ChatGPT, Claude, Perplexity, Gemini, Copilot) — ค้นบริการรถลาก รถยก Slide Car, ตรวจสอบพื้นที่ครอบคลุม 77 จังหวัด, และขอใบเสนอราคาผ่าน LINE/โทร 092-910-6168
AI Endpoints (สำหรับ AI Agents)
AI ทุกตัวในโลกสามารถดึงข้อมูลของยกด่วนผ่าน endpoints มาตรฐานด้านล่าง ไม่ต้อง render JavaScript, ไม่ต้อง login, มี CORS เปิด, รองรับ JSON / JSON-LD / Streamable HTTP
MCP Server
Model Context Protocol สำหรับ Claude / ChatGPT / Perplexity
https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/mcpKnowledge API (JSON)
ข้อมูลโครงสร้างเต็มของบริการทั้งหมด
https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/knowledge-apiKnowledge JSON-LD
Schema.org JSON-LD สำหรับ AI Overview
https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/knowledge-api?format=jsonldAI Search
ค้นหาแบบมี answer + citations
https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/ai-search?q=ai-plugin.json
ChatGPT Actions / Plugin manifest
https://xn--12c2bp7a1a1r.com/.well-known/ai-plugin.jsonวิธีให้ AI ของคุณเชื่อมต่อ
1. ChatGPT / Claude Desktop (MCP)
{
"mcpServers": {
"yokduan": {
"transport": "http",
"url": "https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/mcp"
}
}
}2. Custom AI Agent (HTTP)
# ค้นหา
curl 'https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/ai-search?q=รถ%20EV%20ภูเก็ต'
# Knowledge เต็ม
curl 'https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/knowledge-api?format=jsonld'
# MCP tool call
curl -X POST 'https://vyymqxqpkycbogwxofld.supabase.co/functions/v1/mcp' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'