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 |
Related MCP server: MCP TypeScript Starter
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
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- FlicenseAqualityDmaintenanceA TypeScript MCP server template with Zod validation, dual transport (stdio/HTTP), and modular architecture for building MCP-compatible tools, resources, and prompts.Last updated11
- Alicense-qualityBmaintenanceA feature-complete MCP server template in TypeScript demonstrating tools, resources, prompts, and both stdio and HTTP transports.Last updated8MIT
- Flicense-qualityDmaintenanceA TypeScript MCP server boilerplate with example tools (calculator, greet) and resources (system info), ready for extension and integration with Cursor.Last updated
- FlicenseCqualityDmaintenanceA TypeScript template for building MCP servers with placeholder tools and dual transport support (stdio + SSE).Last updated5
Related MCP Connectors
A TypeScript MCP server for Home Assistant, enabling programmatic management of entities, automati…
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
A MCP server built for developers enabling Git based project management with project and personal…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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