C

Cassandra

Query Apache Cassandra clusters via CQL.

·No reviews yet
Repo
Share:

About

Auto-generated

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

What is the Cassandra MCP?
The Cassandra MCP allows users to query Apache Cassandra clusters using CQL. It provides an interface to interact with Cassandra databases for data retrieval and manipulation.
How can I install the Cassandra MCP in a client?
Installation in an MCP client typically involves adding the Cassandra MCP by its slug, 'cassandra', to your client's installed MCPs. Specific steps may vary depending on the client application you are using.
Does the Cassandra MCP require authentication or API keys?
No, the Cassandra MCP does not require an API key or OAuth. Its authentication type is listed as 'none', meaning it relies on inherent Cassandra cluster authentication.
What are the primary capabilities of the Cassandra MCP?
This MCP is designed to facilitate querying Apache Cassandra clusters via CQL. It provides the means to execute various CQL commands against a Cassandra database.
Is there a cost associated with using the Cassandra MCP?
The Cassandra MCP itself is open-source and free to use, as indicated by its community provider. Any costs would be associated with the underlying Apache Cassandra cluster infrastructure.
What is a prerequisite for using the Cassandra MCP?
A prerequisite for using the Cassandra MCP is an accessible Apache Cassandra cluster. The MCP serves as a client to an existing Cassandra deployment, not as a standalone database.

Install Cassandra

Claude Desktop

Add this to claude_desktop_config.json.

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

Cursor

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

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

VS Code

Add this to your workspace settings.json.

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

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.