Skip to content

0.1.3

Choose a tag to compare

@github-actions github-actions released this 01 Dec 17:07
· 21 commits to main since this release

Packages

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

Installation

macOS:

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

Linux:

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

Windows:

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

Full Changelog: 0.1.1...0.1.3