P
PlanetScale
Query PlanetScale MySQL branches.
·No reviews yet
Share:
About
Auto-generated
PlanetScale is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about PlanetScale.
- What is the purpose of the PlanetScale MCP?
- The PlanetScale MCP allows developers to query PlanetScale MySQL branches. It provides an interface to interact with your PlanetScale databases through a Model Context Protocol client.
- How do I configure the PlanetScale MCP with an MCP client?
- Configuration typically involves installing the MCP from its repository (https://github.com/planetscale/planetscale-mcp) and providing your PlanetScale API key. Specific steps vary by client, such as Claude Desktop, Cursor, or Cline.
- Does the PlanetScale MCP require authentication?
- Yes, the PlanetScale MCP requires an API key for authentication. This key should be obtained from your PlanetScale account to securely access your database instances.
- What capabilities does the PlanetScale MCP expose?
- The PlanetScale MCP primarily exposes tools for querying PlanetScale MySQL branches. This enables programmatic interaction with your database, supporting various data operations.
- What are the cost considerations for using the PlanetScale MCP?
- The PlanetScale MCP is open-source and free to use, as indicated by its community provider status and public repository. However, the underlying PlanetScale service has its own pricing structure, which will dictate your operational costs.
- What is a common prerequisite for using the PlanetScale MCP?
- A key prerequisite for using the PlanetScale MCP is an active PlanetScale account and at least one PlanetScale MySQL branch. You must also generate an API key from your PlanetScale dashboard for authentication.
Install PlanetScale
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"planetscale": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-planetscale"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"planetscale": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-planetscale"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"planetscale": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-planetscale"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.