Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Model Context Protocol (MCP) server for DataStax OpsCenter - Monitor and manage Apache Cassandra clusters through AI assistants DataStax OpsCenter MCP Server A Model Context Protocol (MCP) server that provides access to DataStax OpsCenter API for monitoring and managing Apache Cassandra and DataStax Enterprise clusters. $1 $1 $1 π Features This MCP server provides tools to: - **Cluster Management**: Get cluster configurations and detailed information - **Metrics Collection**: Retrieve performance metrics at cluster, node, and table levels - Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.
Freshness
Last checked 2/22/2026
Best For
Contract is available with explicit auth and schema references.
Not Ideal For
datastax-opscenter-mcp-server is not ideal for teams that need stronger public trust telemetry, lower setup complexity, or more explicit contract coverage before production rollout.
Evidence Sources Checked
editorial-content, capability-contract, runtime-metrics, public facts pack
Model Context Protocol (MCP) server for DataStax OpsCenter - Monitor and manage Apache Cassandra clusters through AI assistants DataStax OpsCenter MCP Server A Model Context Protocol (MCP) server that provides access to DataStax OpsCenter API for monitoring and managing Apache Cassandra and DataStax Enterprise clusters. $1 $1 $1 π Features This MCP server provides tools to: - **Cluster Management**: Get cluster configurations and detailed information - **Metrics Collection**: Retrieve performance metrics at cluster, node, and table levels -
Public facts
7
Change events
1
Artifacts
0
Freshness
Feb 22, 2026
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.
Trust score
Unknown
Compatibility
MCP
Freshness
Feb 22, 2026
Vendor
Yourusername
Artifacts
0
Benchmarks
0
Last release
2.0.0
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Published capability contract available. No trust telemetry is available yet. 1 GitHub stars reported by the source. Last updated 2/24/2026.
Setup snapshot
git clone https://github.com/sangeethdba/datastax-opscenter-mcp-server.gitSetup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Yourusername
Protocol compatibility
MCP
Auth modes
mcp, api_key
Machine-readable schemas
OpenAPI or schema references published
Adoption signal
1 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
bash
git clone https://github.com/yourusername/datastax-opscenter-mcp.git cd datastax-opscenter-mcp
bash
npm install
bash
npm run build
bash
code ~/.vscode/mcp-settings.json
powershell
code %APPDATA%\Code\User\mcp-settings.json
json
{
"mcpServers": {
"datastax-opscenter": {
"command": "node",
"args": [
"/absolute/path/to/datastax-opscenter-mcp/build/index.js"
],
"env": {
"OPSCENTER_URL": "http://your-opscenter-host:8888",
"OPSCENTER_USERNAME": "your_username",
"OPSCENTER_PASSWORD": "your_password"
}
}
}
}Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB MCP
Editorial quality
ready
Model Context Protocol (MCP) server for DataStax OpsCenter - Monitor and manage Apache Cassandra clusters through AI assistants DataStax OpsCenter MCP Server A Model Context Protocol (MCP) server that provides access to DataStax OpsCenter API for monitoring and managing Apache Cassandra and DataStax Enterprise clusters. $1 $1 $1 π Features This MCP server provides tools to: - **Cluster Management**: Get cluster configurations and detailed information - **Metrics Collection**: Retrieve performance metrics at cluster, node, and table levels -
A Model Context Protocol (MCP) server that provides access to DataStax OpsCenter API for monitoring and managing Apache Cassandra and DataStax Enterprise clusters.
This MCP server provides tools to:
git clone https://github.com/yourusername/datastax-opscenter-mcp.git
cd datastax-opscenter-mcp
npm install
npm run build
This compiles TypeScript to JavaScript in the build/ directory.
| Variable | Required | Default | Description |
|----------|----------|---------|-------------|
| OPSCENTER_URL | Yes | http://localhost:8888 | OpsCenter base URL |
| OPSCENTER_USERNAME | No | - | Username for authentication (if enabled) |
| OPSCENTER_PASSWORD | No | - | Password for authentication (if enabled) |
macOS/Linux:
code ~/.vscode/mcp-settings.json
Windows:
code %APPDATA%\Code\User\mcp-settings.json
If the file doesn't exist, create it.
Add the following to your mcp-settings.json:
{
"mcpServers": {
"datastax-opscenter": {
"command": "node",
"args": [
"/absolute/path/to/datastax-opscenter-mcp/build/index.js"
],
"env": {
"OPSCENTER_URL": "http://your-opscenter-host:8888",
"OPSCENTER_USERNAME": "your_username",
"OPSCENTER_PASSWORD": "your_password"
}
}
}
}
β οΈ Important:
/absolute/path/to/datastax-opscenter-mcp with the actual path where you cloned the repoOPSCENTER_URL, OPSCENTER_USERNAME, and OPSCENTER_PASSWORD with your valuesC:/Users/YourName/datastax-opscenter-mcp/build/index.jsClose and reopen VS Code for the changes to take effect.
@datastax-opscenter and you should see the server available@datastax-opscenter get_cluster_configs
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Linux:
~/.config/Claude/claude_desktop_config.json
Open the configuration file and add the MCP server:
{
"mcpServers": {
"datastax-opscenter": {
"command": "node",
"args": [
"/absolute/path/to/datastax-opscenter-mcp/build/index.js"
],
"env": {
"OPSCENTER_URL": "http://localhost:8888",
"OPSCENTER_USERNAME": "admin",
"OPSCENTER_PASSWORD": "password"
}
}
}
}
β οΈ Configuration Notes:
args parameterOPSCENTER_USERNAME and OPSCENTER_PASSWORD if your OpsCenter doesn't require authenticationOPSCENTER_URL to match your OpsCenter instanceCompletely quit and restart the Claude Desktop application.
In Claude Desktop, you should see the MCP server connected. Try:
Can you get the cluster configurations from OpsCenter?
If you prefer running the MCP server in a container:
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
RUN npm run build
ENV OPSCENTER_URL=http://localhost:8888
CMD ["node", "build/index.js"]
docker build -t datastax-opscenter-mcp .
docker run -it \
-e OPSCENTER_URL=http://your-opscenter:8888 \
-e OPSCENTER_USERNAME=admin \
-e OPSCENTER_PASSWORD=password \
datastax-opscenter-mcp
Once configured, you can use the MCP server to monitor your Cassandra clusters:
get_cluster_configsGet configuration information for all clusters managed by OpsCenter.
get_cluster_infoGet detailed information about a specific cluster.
cluster_idget_nodesGet list of all nodes in a cluster with their properties.
cluster_idget_nodes_summary β¨ NEWGet a concise summary of nodes organized by datacenter.
cluster_id (required)datacenter (optional) - Filter by specific datacenter{
"total_nodes": 68,
"datacenter_counts": {
"us-east1-v1": 15,
"us-central1-v1": 15,
"HD_ATC": 18,
"HD_SSC": 20
}
}
get_node_infoGet detailed information about a specific node.
cluster_id, node_ipget_cluster_metricsRetrieve cluster-wide metrics.
cluster_id (required)datacenter (default: "all")metric (required) - e.g., "write-ops", "read-ops", "data-load"start - Unix timestamp in secondsend - Unix timestamp in secondsstep - Time interval in minutes (1, 5, 120, or 1440)function - Aggregation: "min", "max", or "average"Example metrics:
write-ops: Write requests per secondread-ops: Read requests per seconddata-load: Live disk space usedheap-used: Java heap memory usagepending-compaction-tasks: Pending compactionsget_node_metricsRetrieve metrics for a specific node.
node_ipget_bulk_node_metrics β¨ NEWRetrieve metrics for ALL nodes in a datacenter with automatic aggregation.
cluster_id (required)datacenter (required) - e.g., "us-east1-v1"metric (required) - e.g., "read-ops", "write-ops"start (optional) - Defaults to 1 hour agoend (optional) - Defaults to current timestep (optional) - Default: 5 minutesfunction (optional) - Default: "average"{
"cluster_id": "Production_Cluster",
"datacenter": "us-east1-v1",
"metric": "read-ops",
"nodes": {"total": 15, "with_data": 15},
"overall_statistics": {
"total_sum": 785160,
"average": 14.54,
"max": 17.89
}
}
get_table_metricsRetrieve metrics for a specific table.
cluster_id, datacenter, keyspace, table, metricExample table metrics:
cf-write-ops: Table write operations per secondcf-read-ops: Table read operations per secondcf-live-disk-used: Disk space used by tablecf-live-sstables: Number of SSTablesget_new_metricsRetrieve multiple metrics using the unified API.
cluster_id, metrics (comma-separated)nodes or node_group ("*" for all)step in seconds (60, 300, 7200, or 86400)node_aggregation (0 or 1)list_available_metricsList all available metric types with descriptions.
category (optional) - "cluster", "threadpool", "table", "os"get_keyspacesGet list of all keyspaces in a cluster.
cluster_idget_keyspace_schemaGet schema information for a specific keyspace.
cluster_id, keyspaceget_eventsGet events and alerts for a cluster.
cluster_id, limit (default: 100)Once configured, you can use the MCP server to monitor your Cassandra clusters:
In VS Code Copilot Chat:
@datastax-opscenter get_cluster_configs
In Claude Desktop:
Show me all Cassandra clusters managed by OpsCenter
Get a summary of all nodes in "Production_Cluster" organized by datacenter
Using get_nodes_summary tool:
What is the total read request volume for all nodes in us-east1-v1
datacenter of "Production_Cluster" for the last hour?
Using get_bulk_node_metrics tool:
Get detailed information about the cluster "Production_Cluster"
Show me read operations per second for "Production_Cluster"
in the last 3 hours with 5-minute intervals
What is the disk usage and read latency for the table
"users" in keyspace "app_data" on cluster "Production_Cluster"?
Get heap memory usage and CPU metrics for node 10.0.1.50
in cluster "Production_Cluster" for the last hour
// Get all clusters
await callTool("get_cluster_configs", {});
// Get specific cluster details
await callTool("get_cluster_info", {
cluster_id: "Test_Cluster"
});
// Get write operations per second for last hour
const now = Math.floor(Date.now() / 1000);
const oneHourAgo = now - 3600;
await callTool("get_cluster_metrics", {
cluster_id: "Test_Cluster",
datacenter: "all",
metric: "write-ops",
start: oneHourAgo,
end: now,
step: 5, // 5-minute intervals
function: "average"
});
// Get node CPU usage
await callTool("get_node_metrics", {
cluster_id: "Test_Cluster",
node_ip: "10.11.12.150",
metric: "os-cpu-user",
start: oneHourAgo,
end: now
});
// Get table read latency
await callTool("get_table_metrics", {
cluster_id: "Test_Cluster",
datacenter: "all",
keyspace: "Keyspace1",
table: "Users",
metric: "cf-read-latency-op",
function: "max"
});
// List all cluster metrics
await callTool("list_available_metrics", {
category: "cluster"
});
// List all available metrics
await callTool("list_available_metrics", {});
Performance metrics aggregated across the cluster:
write-ops, read-ops, write-failures, read-failureswrite-histogram, read-histogramheap-used, heap-max, nonheap-usedkey-cache-hit-rate, row-cache-hit-ratepending-compaction-tasks, total-bytes-compactedThread pool activity and queue depths:
pending-read-stage, pending-mutation-stage, pending-flushesactive-read-stage, active-mutation-stagecompleted-read-stage, completed-mutation-stagePer-table performance and storage:
cf-write-ops, cf-read-opscf-write-latency-op, cf-read-latency-opcf-live-disk-used, cf-total-disk-used, cf-live-sstablescf-sstables-per-read, cf-partition-sizeHost-level resource utilization:
os-cpu-user, os-cpu-system, os-cpu-idle, os-loados-memory-used, os-memory-freeos-disk-used, os-disk-free, os-disk-read-throughputos-net-received, os-net-sentAll metric queries support time range filtering:
start: Unix timestamp in seconds (beginning of range)end: Unix timestamp in seconds (end of range)step: Data point interval
Metrics can be aggregated using:
min: Minimum value in the time periodmax: Maximum value in the time periodaverage: Average value in the time periodBased on DataStax OpsCenter 6.8 API:
datastax-opscenter-mcp/
βββ src/
β βββ index.ts # Main MCP server implementation
βββ build/ # Compiled JavaScript output
β βββ index.js
β βββ index.d.ts
βββ .github/
β βββ copilot-instructions.md # AI coding assistant guide
βββ package.json
βββ tsconfig.json
βββ .gitignore
βββ README.md
# Install dependencies
npm install
# Build the project
npm run build
# Watch mode for development (auto-rebuild on changes)
npm run watch
# Run the compiled server
npm start
# Run directly with environment variables
OPSCENTER_URL=http://localhost:8888 npm start
src/index.tsnpm run build or npm run watchTo add a new MCP tool:
tools array in src/index.tsCallToolRequestSchema handlernpm run buildProblem: Error: connect ECONNREFUSED
Solutions:
curl http://localhost:8888/cluster-configs
OPSCENTER_URL in your configurationtelnet your-opscenter-host 8888
Problem: 401 Unauthorized
Solutions:
OPSCENTER_USERNAME and OPSCENTER_PASSWORDVS Code:
mcp-settings.json is absolute and correctls /path/to/datastax-opscenter-mcp/build/index.jsmcp-settings.jsonClaude Desktop:
~/Library/Logs/Claude/%APPDATA%\Claude\logs\Problem: API Error (400): Invalid metric
Solutions:
list_available_metrics tool to see valid metrics:
@datastax-opscenter list_available_metrics
read-ops not read_ops)get_cluster_metricsget_node_metricsget_table_metricsProblem: TypeScript compilation fails
Solutions:
node --version # Should be 18.x, 20.x, or 22.x
rm -rf node_modules package-lock.json
npm install
npm run build
npm list typescript
Enable verbose logging by checking stderr output:
VS Code:
Claude Desktop:
Manual Testing:
OPSCENTER_URL=http://localhost:8888 node build/index.js
Contributions are welcome! Here's how you can help:
git checkout -b feature/your-feature-name
npm run build
# Test with VS Code or Claude Desktop
git commit -m "Add feature: description"
MIT License - see LICENSE file for details
Made with β€οΈ for the Cassandra community
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
ready
Auth
mcp, api_key
Streaming
No
Data region
global
Protocol support
Requires: mcp, lang:typescript
Forbidden: none
Guardrails
Operational confidence: medium
curl -s "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
83
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
80
A Model Context Protocol (MCP) server for GitLab
Traction
No public download signal
Freshness
Updated 2d ago
Rank
74
Expose OpenAPI definition endpoints as MCP tools using the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Rank
72
An actix_web backend for the official Rust SDK for the Model Context Protocol (https://github.com/modelcontextprotocol/rust-sdk)
Traction
No public download signal
Freshness
Updated 2d ago
Contract JSON
{
"contractStatus": "ready",
"authModes": [
"mcp",
"api_key"
],
"requires": [
"mcp",
"lang:typescript"
],
"forbidden": [],
"supportsMcp": true,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": "https://github.com/sangeethdba/datastax-opscenter-mcp-server#input",
"outputSchemaRef": "https://github.com/sangeethdba/datastax-opscenter-mcp-server#output",
"dataRegion": "global",
"contractUpdatedAt": "2026-02-24T19:46:53.084Z",
"sourceUpdatedAt": "2026-02-24T19:46:53.084Z",
"freshnessSeconds": 4430945
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"MCP"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_MCP",
"generatedAt": "2026-04-17T02:35:58.103Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "MCP",
"type": "protocol",
"support": "supported",
"confidenceSource": "contract",
"notes": "Confirmed by capability contract"
},
{
"key": "mcp",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "model-context-protocol",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "datastax",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "opscenter",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cassandra",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "database",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "monitoring",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "metrics",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cluster-management",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "dse",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "ai",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "copilot",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "claude",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "cli",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:MCP|supported|contract capability:mcp|supported|profile capability:model-context-protocol|supported|profile capability:datastax|supported|profile capability:opscenter|supported|profile capability:cassandra|supported|profile capability:database|supported|profile capability:monitoring|supported|profile capability:metrics|supported|profile capability:cluster-management|supported|profile capability:dse|supported|profile capability:ai|supported|profile capability:copilot|supported|profile capability:claude|supported|profile capability:cli|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "MCP",
"href": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:53.084Z",
"isPublic": true
},
{
"factKey": "auth_modes",
"category": "compatibility",
"label": "Auth modes",
"value": "mcp, api_key",
"href": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:53.084Z",
"isPublic": true
},
{
"factKey": "schema_refs",
"category": "artifact",
"label": "Machine-readable schemas",
"value": "OpenAPI or schema references published",
"href": "https://github.com/sangeethdba/datastax-opscenter-mcp-server#input",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/contract",
"sourceType": "contract",
"confidence": "high",
"observedAt": "2026-02-24T19:46:53.084Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Yourusername",
"href": "https://github.com/yourusername/datastax-opscenter-mcp#readme",
"sourceUrl": "https://github.com/yourusername/datastax-opscenter-mcp#readme",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1 GitHub stars",
"href": "https://github.com/sangeethdba/datastax-opscenter-mcp-server",
"sourceUrl": "https://github.com/sangeethdba/datastax-opscenter-mcp-server",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-02-24T19:43:14.176Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/mcp-sangeethdba-datastax-opscenter-mcp-server/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub Β· GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to datastax-opscenter-mcp-server and adjacent AI workflows.