by datastax
Enables large language models to interact with Astra DB by exposing CRUD and query tools through a Model Context Protocol server.
Provides a Model Context Protocol (MCP) server that allows LLM agents to perform collection‑level operations (create, read, update, delete, bulk actions, search) on an Astra DB instance.
ASTRA_DB_APPLICATION_TOKEN
, ASTRA_DB_API_ENDPOINT
) and optionally ASTRA_DB_KEYSPACE
.npx
and connect to the specified Astra DB.GetCollections
, CreateCollection
, UpdateCollection
, DeleteCollection
ListRecords
, GetRecord
, CreateRecord
, UpdateRecord
, DeleteRecord
BulkCreateRecords
, BulkUpdateRecords
, BulkDeleteRecords
FindRecord
, EstimateDocumentCount
OpenBrowser
for auth flow, HelpAddToClient
for setup assistanceQ: Which environment variables are mandatory?
A: ASTRA_DB_APPLICATION_TOKEN
and ASTRA_DB_API_ENDPOINT
. ASTRA_DB_KEYSPACE
is optional.
Q: Can I run the server on Windows?
A: Yes. Use cmd
with /k
to invoke npx
as shown in the Claude Desktop instructions.
Q: Do I need to rebuild after changing code?
A: No. The eval package loads the MCP client directly; just re‑run the npx
command.
Q: How do I add the server to Cursor?
A: Either edit the project‑specific .cursor/mcp.json
or use the UI wizard, supplying the same command and env variables as for Claude Desktop.
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.
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:
To learn how to get these, please read the getting started docs.
Here's how you can add this server to your MCP client.
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"
}
}
}
}
Optional Keyspace Configuration:
By default, this server uses the keyspace configured in the underlying Astra DB library (typically default_keyspace
). If you need to connect to a specific keyspace, you can add the ASTRA_DB_KEYSPACE
variable to the env
object above, like so:
"env": {
"ASTRA_DB_APPLICATION_TOKEN": "your_astra_db_token",
"ASTRA_DB_API_ENDPOINT": "your_astra_db_endpoint",
"ASTRA_DB_KEYSPACE": "your_desired_keyspace"
}
Windows PowerShell Users:
npx
is a batch command so modify the JSON as follows:
"command": "cmd",
"args": ["/k", "npx", "-y", "@datastax/astra-db-mcp"],
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.json
that represents your Global MCP settings, and a project-specific.cursor/mcp.json
file 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):
env ASTRA_DB_APPLICATION_TOKEN=your_astra_db_token ASTRA_DB_API_ENDPOINT=your_astra_db_endpoint npx -y @datastax/astra-db-mcp
Note: ASTRA_DB_KEYSPACE
is optional. If omitted, the default keyspace configured in the Astra DB library will be used.
Once added, your editor will be fully connected to your Astra DB database.
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 collectionAll 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.
The evals package loads an mcp client that then runs the index.ts file, so there is no need to rebuild between tests. You can load environment variables by prefixing the npx command. Full documentation can be found here.
OPENAI_API_KEY=your-key npx mcp-eval evals.ts tools.ts
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "astra-db-mcp": { "command": "npx", "args": [ "-y", "@datastax/astra-db-mcp" ], "env": { "ASTRA_DB_APPLICATION_TOKEN": "<YOUR_APPLICATION_TOKEN>", "ASTRA_DB_API_ENDPOINT": "<YOUR_API_ENDPOINT>", "ASTRA_DB_KEYSPACE": "<OPTIONAL_KEYSPACE>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by googleapis
An MCP server that streamlines database tool development by handling connection pooling, authentication, observability, and secure access, allowing agents to interact with databases via natural language.
by bytebase
Provides a universal gateway that lets MCP‑compatible clients explore and query MySQL, PostgreSQL, SQL Server, MariaDB, and SQLite databases through a single standardized interface.
by designcomputer
Enables secure interaction with MySQL databases via the Model Context Protocol, allowing AI applications to list tables, read contents, and execute queries safely.
by benborla
Provides read‑only access to MySQL databases for large language models, allowing schema inspection and safe execution of SQL queries.
by ClickHouse
Enables AI assistants to run read‑only ClickHouse queries, list databases and tables, and execute embedded chDB queries through an MCP interface.
by chroma-core
Offers an MCP server exposing Chroma's vector database capabilities for LLM applications, supporting collection and document management, multiple embedding functions, and flexible client types such as in‑memory, persistent, HTTP, and cloud.
by kiliczsh
Enables LLMs to interact with MongoDB databases via a standardized interface, offering schema inspection, query execution, aggregation, and write capabilities, with optional read‑only mode and smart ObjectId handling.
by domdomegg
Provides read and write access to Airtable bases for AI systems, enabling inspection of schemas and manipulation of records.
by XGenerationLab
A Model Context Protocol (MCP) server that enables natural language queries to databases