@楽曲作りまくりおじさん 楽曲作りまくりおじさん authored 8 days ago
.github Add MCP server with llama.cpp integration and docs 8 days ago
.vscode Add MCP server with llama.cpp integration and docs 8 days ago
document Add comprehensive test suite (35 tests) and update journal 8 days ago
journals Add comprehensive test suite (35 tests) and update journal 8 days ago
src Add comprehensive test suite (35 tests) and update journal 8 days ago
test Add comprehensive test suite (35 tests) and update journal 8 days ago
.gitignore Add MCP server with llama.cpp integration and docs 8 days ago
README.md Add MCP server with llama.cpp integration and docs 8 days ago
bun.lock Add MCP server with llama.cpp integration and docs 8 days ago
generate-icon.js Add MCP server with llama.cpp integration and docs 8 days ago
jsconfig.json Add MCP server with llama.cpp integration and docs 8 days ago
mcp.json.sample Add MCP server with llama.cpp integration and docs 8 days ago
package-lock.json Add MCP server with llama.cpp integration and docs 8 days ago
package.json Add comprehensive test suite (35 tests) and update journal 8 days ago
README.md

SQLite Vector MCP Server (Electron + Bun)

Bun と Electron を使用した常駐型 MCP サーバーです。
sqlite-vec を使用してベクトル検索機能を提供します。

機能

  • add_item: テキストとベクトル(3次元)を保存します。
  • search_vector: ベクトル(3次元)を使用して、最も近いアイテムを検索します。

起動

bun start

MCP クライアント(Claude Desktop 等)への設定

SSE を使用して接続します。

{
  "mcpServers": {
    "sqlite-vector": {
      "url": "http://localhost:3000/sse"
    }
  }
}