- Explore MCP Servers
- astra-db-mcp
Astra Db Mcp
What is Astra Db Mcp
Astra-db-mcp is a Model Context Protocol (MCP) server designed for interacting with Astra DB workloads. It enhances the capabilities of Large Language Models (LLMs) by enabling them to act as agents that can interact with external systems.
Use cases
Use cases for astra-db-mcp include integrating LLMs with Astra DB for data management tasks, automating database operations, and enhancing applications that require dynamic data interaction.
How to use
To use astra-db-mcp, you need a running Astra DB database. Obtain your Astra DB Application Token and API Endpoint, then configure your MCP client (like Claude Desktop or Cursor) by adding the necessary JSON configuration to connect to the server.
Key features
Key features include tools for managing collections and records in Astra DB, such as creating, updating, deleting collections and records, as well as listing records and retrieving specific records by ID.
Where to use
undefined
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Astra Db Mcp
Astra-db-mcp is a Model Context Protocol (MCP) server designed for interacting with Astra DB workloads. It enhances the capabilities of Large Language Models (LLMs) by enabling them to act as agents that can interact with external systems.
Use cases
Use cases for astra-db-mcp include integrating LLMs with Astra DB for data management tasks, automating database operations, and enhancing applications that require dynamic data interaction.
How to use
To use astra-db-mcp, you need a running Astra DB database. Obtain your Astra DB Application Token and API Endpoint, then configure your MCP client (like Claude Desktop or Cursor) by adding the necessary JSON configuration to connect to the server.
Key features
Key features include tools for managing collections and records in Astra DB, such as creating, updating, deleting collections and records, as well as listing records and retrieving specific records by ID.
Where to use
undefined
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Astra DB MCP Server
A Model Context Protocol (MCP) server for interacting with Astra DB. MCP extends the capabilities of Large Language Models (LLMs) by allowing them to interact with external systems as agents.
Prerequisites
You need to have a running Astra DB database. If you don’t have one, you can create a free database here. From there, you can get two things you need:
- An Astra DB Application Token
- The Astra DB API Endpoint
To learn how to get these, please read the getting started docs.
Adding to an MCP client
Here’s how you can add this server to your MCP client.
Claude Desktop

To add this to Claude Desktop, go to Preferences -> Developer -> Edit Config and add this JSON blob to claude_desktop_config.json:
{
"mcpServers": {
"astra-db-mcp": {
"command": "npx",
"args": [
"-y",
"@datastax/astra-db-mcp"
],
"env": {
"ASTRA_DB_APPLICATION_TOKEN": "your_astra_db_token",
"ASTRA_DB_API_ENDPOINT": "your_astra_db_endpoint"
}
}
}
}
Windows PowerShell Users:
npx is a batch command so modify the JSON as follows:
Cursor

To add this to Cursor, go to Settings -> Cursor Settings -> MCP
From there, you can add the server by clicking the “+ Add New MCP Server” button, where you should be brought to an mcp.json file.
Tip: there is a
~/.cursor/mcp.jsonthat represents your Global MCP settings, and a project-specific.cursor/mcp.jsonfile
that is specific to the project. You probably want to install this MCP server into the project-specific file.
Add the same JSON as indiciated in the Claude Desktop instructions.
Alternatively you may be presented with a wizard, where you can enter the following values (for Unix-based systems):
- Name: Whatever you want
- Type: Command
- Command:
env ASTRA_DB_APPLICATION_TOKEN=your_astra_db_token ASTRA_DB_API_ENDPOINT=your_astra_db_endpoint npx -y @datastax/astra-db-mcp
Once added, your editor will be fully connected to your Astra DB database.
Available Tools
The server provides the following tools for interacting with Astra DB:
GetCollections: Get all collections in the databaseCreateCollection: Create a new collection in the databaseUpdateCollection: Update an existing collection in the databaseDeleteCollection: Delete a collection from the databaseListRecords: List records from a collection in the databaseGetRecord: Get a specific record from a collection by IDCreateRecord: Create a new record in a collectionUpdateRecord: Update an existing record in a collectionDeleteRecord: Delete a record from a collectionFindRecord: Find records in a collection by field valueBulkCreateRecords: Create multiple records in a collection at onceBulkUpdateRecords: Update multiple records in a collection at onceBulkDeleteRecords: Delete multiple records from a collection at onceOpenBrowser: Open a web browser for authentication and setupHelpAddToClient: Get assistance with adding Astra DB client to your MCP clientEstimateDocumentCount: Get estimate of the number of documents in a collection
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
❤️ Contributors
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










