🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@sqlike/mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sqlike/mcp

MCP server for sqlike — deterministic SQL static analysis. A thin remote client that tokenizes locally and forwards to the sqlike API.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

@sqlike/mcp

MCP server for sqlike — a deterministic SQL static analyzer and advisor (validity, anti-patterns, rewrites, schema advice) for Postgres, MySQL, SQLite, and SQL Server.

This package is a thin remote client: it tokenizes your SQL locally (identifiers and literals are replaced before anything leaves your machine) and forwards the tokenized query to the sqlike API for analysis. It contains no analysis engine.

Use it

No install needed — point your MCP client at it via npx:

{
  "mcpServers": {
    "sqlike": {
      "command": "npx",
      "args": ["-y", "@sqlike/mcp"]
    }
  }
}

It exposes two tools:

  • analyze — static analysis of a single SQL query.
  • diff — whether two queries are equivalent.

Configuration

Both are read from the environment:

  • SQLIKE_URL — API base URL (default https://api.sqlike.com).
  • SQLIKE_API_KEY — optional; sent as a Bearer token for higher rate limits.
{
  "mcpServers": {
    "sqlike": {
      "command": "npx",
      "args": ["-y", "@sqlike/mcp"],
      "env": { "SQLIKE_API_KEY": "sk_..." }
    }
  }
}

How it ships

The server is a native binary. Each platform's binary is published as its own optional-dependency package (@sqlike/mcp-linux-x64, @sqlike/mcp-darwin-arm64, …); npm installs only the one matching your OS and CPU. No install scripts run — this works with --ignore-scripts and in locked-down environments. Supported: linux x64/arm64, macOS x64/arm64, Windows x64.

License

MIT OR Apache-2.0

Keywords

mcp

FAQs

Package last updated on 18 Jul 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts