rocks-db
Allows executing SQL queries (SELECT, INSERT, UPDATE, DELETE) and managing tables on a MySQL database.
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., "@rocks-dblist all tables in the employee database"
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.
Setup Guide: Fullscale Rocks MCP Server
This guide explains how to install, configure, and start the MCP server for the fullscale-rocks database.
1. Installation
If you haven't already, install the dependencies:
cd rocks-mcp
npm install2. Configuration
The server requires database credentials and an OAuth public key.
Database Settings
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=3001Authentication
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.
3. Running the Server
Development Mode
Runs the server with tsx (reloads on file changes):
npm run devProduction Mode
Build the TypeScript code and start the built version:
npm run build
npm start4. Connecting to AI Applications
Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"rocks-db": {
"command": "node",
"args": ["/home/ryscript/fullscale-rocks/rocks-mcp/build/index.js"]
}
}
}Generic MCP Client (SSE)
The server also supports Server-Sent Events (SSE) for remote or web-based clients.
SSE URL:
http://localhost:3001/ssePost Message URL:
http://localhost:3001/message
You can use this with the MCP Inspector or other SSE-compatible clients.
5. Tools Reference
The server exposes the following tools:
Tool | Purpose | Requirements |
| Run |
|
| Run |
|
| List all tables |
|
| Show columns for a table |
|
Note: The auth_token should be a valid Bearer token obtained from the rocks-api login process.
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/rsutana/rocks-db-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server