Newer
Older
TelosDB / document / mcp.json
// MCP API仕様(mcp.json)
// 本ファイルはUIの「mcp.json表示」機能用のダミーです。
{
  "openapi": "3.0.3",
  "info": {
    "title": "SQLite Vector MCP REST API",
    "version": "0.1.0",
    "description": "REST API for text-based insert/search backed by sqlite-vec."
  },
  "paths": {
    "/api/items": {
      "post": {
        "summary": "Add item from text",
        "description": "Generates embeddings from text and stores item + vector.",
        "requestBody": { "required": true },
        "responses": { "200": { "description": "Item created" } }
      }
    },
    "/api/search": {
      "post": {
        "summary": "Search by text",
        "description": "Generates embeddings from text and returns nearest items.",
        "requestBody": { "required": true },
        "responses": { "200": { "description": "Search results" } }
      }
    }
  }
}