loading…
Search for a command to run...
loading…
Enables executing SQL queries (SELECT, INSERT, UPDATE, DELETE) and database introspection (list tables, describe table) on MySQL and PostgreSQL databases with O
Enables executing SQL queries (SELECT, INSERT, UPDATE, DELETE) and database introspection (list tables, describe table) on MySQL and PostgreSQL databases with OAuth authentication.
This guide explains how to install, configure, and start the MCP server for the fullscale-rocks database.
If you haven't already, install the dependencies:
cd rocks-mcp
npm install
The server requires database credentials and an OAuth public key.
Create or edit rocks-mcp/.env:
MYSQL_HOST=127.0.0.1
MYSQL_PORT=3306
MYSQL_DATABASE=employee
MYSQL_USER=employee
MYSQL_PASSWORD=thisisapassword
PG_HOST=127.0.0.1
PG_PORT=5432
PG_DATABASE=employee
PG_USER=employee
PG_PASSWORD=thisisapassword
SSE_PORT=3001
The server automatically looks for the OAuth public key at:
/home/ryscript/fullscale-rocks/rocks-api/storage/oauth-public.key
Ensure this file exists, as it is used to verify JWT tokens from rocks-api.
Runs the server with tsx (reloads on file changes):
npm run dev
Build the TypeScript code and start the built version:
npm run build
npm start
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"rocks-db": {
"command": "node",
"args": ["/home/ryscript/fullscale-rocks/rocks-mcp/build/index.js"]
}
}
}
The server also supports Server-Sent Events (SSE) for remote or web-based clients.
http://localhost:3001/ssehttp://localhost:3001/messageYou can use this with the MCP Inspector or other SSE-compatible clients.
The server exposes the following tools:
| Tool | Purpose | Requirements |
|---|---|---|
execute_read |
Run SELECT queries |
auth_token, db_type |
execute_write |
Run INSERT/UPDATE/DELETE |
auth_token (Admin only), db_type |
list_tables |
List all tables | auth_token, db_type |
describe_table |
Show columns for a table | auth_token, db_type, table_name |
Note: The auth_token should be a valid Bearer token obtained from the rocks-api login process.
Run in your terminal:
claude mcp add rocks-db -- npx Yes, Rocks Db MCP is free — one-click install via Unyly at no cost.
No, Rocks Db runs without API keys or environment variables.
Self-hosted: the server runs locally on your machine via the install command above.
Open Rocks Db on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Query your database in natural language
by AnthropicA universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
by wenb1n-devThis server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
by madhurprashRead-only database access with schema inspection.
by modelcontextprotocolNot sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All data MCPs