DEVELOPERS
Every manual hosted on Kefuma is a product-knowledge service AI can query and call directly. Three ways to connect — MCP, open API, llms.txt — all public, verifiable in one click.
Add a snippet of config to any MCP-capable client and AI can query your manual, file tickets for users, check warranties, and hand off to a human.
{
"mcpServers": {
"kefuma": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://kefuma.com/api/mcp"]
}
}
}REST endpoints with CORS fully open — try them with no auth required. Feed your official content into your own agent or support system.
curl -X POST https://kefuma.com/api/v2/tititalk/chat \
-H 'Content-Type: application/json' \
-d '{"question": "支持哪些语言?"}'curl "https://kefuma.com/api/v2/tititalk/search?q=充电"The standard ecosystem entry point — ChatGPT, Doubao, Perplexity and others automatically discover and cite your official content.
https://kefuma.com/llms.txt # 站点索引:全部已发布说明书
https://kefuma.com/m/tititalk.md # 单册 Markdown 全文
https://kefuma.com/m/tititalk/llms.txt # 单册索引卡/api/v2/{slug}/chat官方 RAG 问答list_manuals列出全部已发布说明书get_manual取某本说明书 Markdown 全文search_manual语义检索片段 + 溯源ask_manual官方口径 RAG 问答submit_ticket替用户提交售后工单check_warranty查询保修状态register_product注册激活保修request_human转人工,返回续聊 tokenCreate, generate and publish manuals programmatically with an API key. Ideal for wiring content production into your pipeline; requires Pro.
View management API docsWhere AI and developers find all your content and interfaces.