Antigravity MCP Bridge
Provides tools to query and manage SQLite databases, including listing tables, describing table schemas, and executing read-only and write SQL statements.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Antigravity MCP BridgeShow me the current system status"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Antigravity MCP Bridge
A TypeScript-based Model Context Protocol (MCP) server template wired into the Antigravity agentic environment. It exposes tools over a stdio transport and ships with a ready-to-import SQLite skill for local database access.
Prerequisites
Requirement | Version |
Node.js | ≥ 18 |
npm | ≥ 9 |
Antigravity | latest |
Project Structure
antigravity-mcp-bridge/
├── src/
│ └── server.ts # MCP server — stdio transport + tools
├── skills/
│ └── sqlite_skill.json # Antigravity Global Skill definition
├── dist/ # Compiled JS output (after build)
├── auto_bridge.sh # Detects MCP configs & writes env settings
├── tsconfig.json
├── package.json
└── README.md1 · Starting the MCP Server
Build & run (recommended)
# Install dependencies (first time only)
npm install
# Compile TypeScript → dist/
npm run build
# Start the server
node dist/server.jsThe server writes a startup message to stderr and listens for MCP messages on stdin/stdout.
Development mode (ts-node)
npx ts-node src/server.tsAuto-bridge setup
Run auto_bridge.sh once after cloning (or whenever your MCP config changes). It scans well-known config locations, detects your Node environment, and writes .env.mcp plus a descriptor into ~/.antigravity/mcp/.
chmod +x auto_bridge.sh # already done if you followed setup
./auto_bridge.sh2 · Importing the SQLite Skill into Antigravity Manager
Open the Antigravity desktop app and navigate to the Manager View (sidebar → 🧩 Manager).
Click Import Skill (top-right of the Skills panel).
In the file picker, navigate to:
/path/to/antigravity-mcp-bridge/skills/sqlite_skill.jsonand select it.
Antigravity will validate the skill schema and display a "SQLite Database Connector" card under the Data Sources category.
Click Configure on the card and fill in the required field:
SQLite Database Path — absolute path to your
.db/.sqlitefile, e.g./Users/sameer/data/myapp.db
Click Save & Activate. The skill is now globally available to all agents.
Tip: You can activate / deactivate the skill at any time from the Manager View without removing the import.
3 · Testing the Connection with the Built-in Browser
Antigravity ships a built-in MCP Inspector browser that lets you call tools interactively.
Step-by-step
Start the MCP server (see §1 above) so it is listening.
In Antigravity, open Settings → MCP Servers and click + Add Server.
Set:
Transport:
stdioCommand:
node /path/to/antigravity-mcp-bridge/dist/server.js
Click Connect. The status indicator should turn green.
Navigate to Tools tab inside the MCP Inspector.
Select the
system_statustool, leave the input blank (no parameters), and click Run.The response pane should display a JSON payload similar to:
{ "currentTime": "2026-04-23T02:19:15.000Z", "platform": "darwin", "release": "24.4.0", "architecture": "arm64", "hostname": "MacBook-Pro", "cpus": 10, "totalMemoryMB": 16384, "freeMemoryMB": 4096, "uptime": "3h 42m", "nodeVersion": "v22.0.0" }To test the SQLite skill, ensure the skill is imported and configured (§2), then ask an agent: "List all tables in my database." The agent will invoke
sqlite_list_tablesvia the MCP bridge automatically.
Available Tools
Tool | Description |
| Returns current UTC time and OS details |
| Execute a read-only SQL SELECT |
| Execute a write SQL statement |
| List all tables in the SQLite DB |
| Describe columns of a table |
Scripts
npm run build # tsc — compile src/ → dist/
npm run dev # ts-node src/server.ts (watch mode)
npm run start # node dist/server.jsAdding More Tools
Open src/server.ts and call server.tool(name, description, inputSchema, handler):
server.tool(
"my_new_tool",
"Does something useful.",
{ param: z.string().describe("An example parameter") },
async ({ param }) => ({
content: [{ type: "text", text: `You passed: ${param}` }],
})
);Rebuild with npm run build and reconnect in Antigravity.
License
MIT
Created by:
Sameer Abrar, Flexcrit Inc
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Flexcrit/Antigravity-MCP-Bridge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server