Skip to content

0.1.1

Choose a tag to compare

@github-actions github-actions released this 01 Dec 16:15
· 23 commits to main since this release

SQLite MCP Client Extension v0.1.1

Packages

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

Installation

macOS:

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

Linux:

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

Windows:

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

Full Changelog: https://github.com/sqliteai/sqlite-mcp/commits/0.1.1