S

ScyllaDB

Query ScyllaDB clusters via CQL.

·No reviews yet
Repo
Share:

About

Auto-generated

ScyllaDB 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 ScyllaDB.

What is the ScyllaDB MCP primarily used for?
The ScyllaDB MCP facilitates querying ScyllaDB clusters using the Cassandra Query Language (CQL). It enables integration with tools that support the Model Context Protocol.
How can I install the ScyllaDB MCP in a client like Cline?
Installation in clients like Cline typically involves specifying the transport mechanism, such as 'stdio', and ensuring the MCP executable is accessible in your system's PATH or by providing its full path in the client's configuration.
Does the ScyllaDB MCP require an API key or other credentials for authentication?
No, the ScyllaDB MCP itself does not require an API key or other credentials for authentication, as its auth type is specified as 'none'. Authentication to the underlying ScyllaDB cluster is managed separately.
What are the key capabilities exposed by the ScyllaDB MCP?
The primary capability exposed is the ability to interact with ScyllaDB clusters through CQL. This allows for data retrieval, manipulation, and schema management operations on your ScyllaDB instances.
Is there a cost associated with using the ScyllaDB MCP?
The ScyllaDB MCP is provided by the community and is open-source, implying no direct cost for the MCP itself. Costs may arise from deploying and operating ScyllaDB clusters.
What is a prerequisite for using the ScyllaDB MCP effectively?
A key prerequisite for effective use is a running ScyllaDB cluster that is network-accessible from where the MCP is executed. Users should also be familiar with CQL for querying.

Install ScyllaDB

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "scylladb": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-scylladb"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "scylladb": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-scylladb"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "scylladb": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-scylladb"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.