Skip to content

0.1.4

Latest

Choose a tag to compare

@github-actions github-actions released this 23 Dec 09:51

Packages

Node: npm install @sqliteai/sqlite-mcp
Android: ai.sqlite:mcp:0.1.4
Swift: Installation Guide

Installation

macOS:

wget https://github.com/sqliteai/sqlite-mcp/releases/download/0.1.4/mcp-macos-0.1.4.tar.gz
tar -xzf mcp-macos-0.1.4.tar.gz
sqlite3 :memory: ".load ./mcp.dylib" "SELECT mcp_version();"

Linux:

wget https://github.com/sqliteai/sqlite-mcp/releases/download/0.1.4/mcp-linux-x86_64-0.1.4.tar.gz
tar -xzf mcp-linux-x86_64-0.1.4.tar.gz
sqlite3 :memory: ".load ./mcp.so" "SELECT mcp_version();"

Windows:

Invoke-WebRequest -Uri "https://github.com/sqliteai/sqlite-mcp/releases/download/0.1.4/mcp-windows-x86_64-0.1.4.zip" -OutFile "mcp.zip"
Expand-Archive -Path "mcp.zip" -DestinationPath "."
sqlite3 :memory: ".load ./mcp.dll" "SELECT mcp_version();"

Full Changelog: 0.1.3...0.1.4