Crawler Summary

@ahmedmustafamalik/mysql-mcp answer-first brief

MCP server for MySQL database interactions MySQL MCP Server A Model Context Protocol (MCP) server for MySQL database interactions. This server allows LLMs to understand database schemas and execute safe SQL queries with built-in security features and scalability support. ๐Ÿš€ **Quick Start**: New to this project? Check out our $1 for the fastest way to get up and running! Features - **Schema Analysis**: Comprehensive database schema exploration including tables Published capability contract available. No trust telemetry is available yet. 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

@ahmedmustafamalik/mysql-mcp 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

Claim this agent
Agent DossierGitHubSafety: 93/100

@ahmedmustafamalik/mysql-mcp

MCP server for MySQL database interactions MySQL MCP Server A Model Context Protocol (MCP) server for MySQL database interactions. This server allows LLMs to understand database schemas and execute safe SQL queries with built-in security features and scalability support. ๐Ÿš€ **Quick Start**: New to this project? Check out our $1 for the fastest way to get up and running! Features - **Schema Analysis**: Comprehensive database schema exploration including tables

MCPverified

Public facts

6

Change events

1

Artifacts

0

Freshness

Feb 22, 2026

Verifiededitorial-content1 verified compatibility signal

Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.

Schema refs publishedTrust evidence available

Trust score

Unknown

Compatibility

MCP

Freshness

Feb 22, 2026

Vendor

Ahmustufa

Artifacts

0

Benchmarks

0

Last release

1.2.3

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Published capability contract available. No trust telemetry is available yet. Last updated 2/24/2026.

Setup snapshot

git clone https://github.com/Ahmustufa/mysql-mcp.git
  1. 1

    Setup complexity is MEDIUM. Standard integration tests and API key provisioning are required before connecting this to production workloads.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Ahmustufa

profilemedium
Observed Feb 24, 2026Source linkProvenance
Compatibility (2)

Protocol compatibility

MCP

contracthigh
Observed Feb 24, 2026Source linkProvenance

Auth modes

mcp, api_key

contracthigh
Observed Feb 24, 2026Source linkProvenance
Artifact (1)

Machine-readable schemas

OpenAPI or schema references published

contracthigh
Observed Feb 24, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB MCP

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Executable Examples

bash

# Clone the repository
git clone https://github.com/Ahmustufa/mysql-mcp.git
cd mysql-mcp

# Install dependencies
npm install

# Install development dependencies (if not automatically installed)
npm install --save-dev tsx @types/node

bash

# Build the Docker image
docker build -t mysql-mcp .

# Or pull from registry (if published)
docker pull ahmustufa/mysql-mcp:latest

bash

# Required Database Configuration
DB_SERVER=localhost
DB_DATABASE=your_database_name
DB_USER=your_username
DB_PASSWORD=your_password

# Optional Configuration
DB_PORT=3306
DB_SSL=false  # Set to 'false' to disable SSL, or leave undefined for AWS RDS SSL

# For AWS RDS MySQL
# DB_SERVER=your-rds-endpoint.region.rds.amazonaws.com
# DB_SSL=Amazon RDS  # Enables SSL for RDS

bash

# Docker with environment variables
docker run -e DB_SERVER=localhost \
           -e DB_DATABASE=mydb \
           -e DB_USER=user \
           -e DB_PASSWORD=password \
           mysql-mcp

# Docker with .env file
docker run --env-file .env mysql-mcp

bash

npm run dev

bash

npm run build
npm start

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB MCP

Docs source

GITHUB MCP

Editorial quality

ready

MCP server for MySQL database interactions MySQL MCP Server A Model Context Protocol (MCP) server for MySQL database interactions. This server allows LLMs to understand database schemas and execute safe SQL queries with built-in security features and scalability support. ๐Ÿš€ **Quick Start**: New to this project? Check out our $1 for the fastest way to get up and running! Features - **Schema Analysis**: Comprehensive database schema exploration including tables

Full README

MySQL MCP Server

A Model Context Protocol (MCP) server for MySQL database interactions. This server allows LLMs to understand database schemas and execute safe SQL queries with built-in security features and scalability support.

๐Ÿš€ Quick Start: New to this project? Check out our Getting Started Guide for the fastest way to get up and running!

Features

  • Schema Analysis: Comprehensive database schema exploration including tables, views, and stored procedures
  • Safe Query Execution: Built-in SQL injection protection and read-only query validation
  • Connection Pooling: Efficient connection management with configurable pool settings
  • Docker Support: Ready-to-deploy Docker container with multi-stage builds
  • TypeScript Support: Full TypeScript implementation with type safety
  • AWS RDS Compatible: Optimized for AWS RDS MySQL instances with SSL support
  • Scalable Architecture: Designed for high-performance database interactions

Installation

Local Development

# Clone the repository
git clone https://github.com/Ahmustufa/mysql-mcp.git
cd mysql-mcp

# Install dependencies
npm install

# Install development dependencies (if not automatically installed)
npm install --save-dev tsx @types/node

Docker Installation

# Build the Docker image
docker build -t mysql-mcp .

# Or pull from registry (if published)
docker pull ahmustufa/mysql-mcp:latest

Configuration

Environment Variables

Create a .env file in the project root:

# Required Database Configuration
DB_SERVER=localhost
DB_DATABASE=your_database_name
DB_USER=your_username
DB_PASSWORD=your_password

# Optional Configuration
DB_PORT=3306
DB_SSL=false  # Set to 'false' to disable SSL, or leave undefined for AWS RDS SSL

# For AWS RDS MySQL
# DB_SERVER=your-rds-endpoint.region.rds.amazonaws.com
# DB_SSL=Amazon RDS  # Enables SSL for RDS

Docker Environment

For Docker deployments, you can use environment variables or a .env file:

# Docker with environment variables
docker run -e DB_SERVER=localhost \
           -e DB_DATABASE=mydb \
           -e DB_USER=user \
           -e DB_PASSWORD=password \
           mysql-mcp

# Docker with .env file
docker run --env-file .env mysql-mcp

Usage

Development Mode

npm run dev

Production Mode

npm run build
npm start

Docker Usage

# Basic Docker run
docker run --env-file .env mysql-mcp

# Docker with port mapping (if extending with HTTP endpoints)
docker run -p 3000:3000 --env-file .env mysql-mcp

# Docker Compose (see docker-compose.yml section below)
docker-compose up -d

Available Tools

1. execute_query

Execute SQL queries with built-in safety validation.

Parameters:

  • query (string): SQL query to execute

Safety Features:

  • Blocks destructive operations (DROP, DELETE, TRUNCATE)
  • Prevents SQL injection attacks
  • Read-focused operations

Example:

{
  "query": "SELECT * FROM users WHERE id = 1"
}

2. list_tables

List all base tables in the current database.

Parameters: None

Returns: Array of table information including schema, name, and type.

Example Usage:

{
  "tool": "list_tables"
}

3. describe_table

Get detailed schema information for a specific table.

Parameters:

  • table_name (string): Name of the table to describe

Returns: Column information including data types, nullability, defaults, and constraints.

Example:

{
  "table_name": "users"
}

4. get_table_data

Retrieve sample data from a table.

Parameters:

  • table_name (string): Name of the table
  • limit (number, optional): Number of rows to return (1-100, default: 10)

Example:

{
  "table_name": "users",
  "limit": 5
}

5. primary_keys

Get primary key column(s) for a specific table.

Parameters:

  • table_name (string): Name of the table

Returns: List of primary key columns for the specified table.

Example:

{
  "table_name": "users"
}

6. search_columns

Find columns whose names match a pattern (case-insensitive).

Parameters:

  • like (string): Pattern to search for in column names

Returns: List of matching columns across all tables with their data types.

Example:

{
  "like": "email"
}

7. foreign_keys

List foreign key relationships for a table.

Parameters:

  • table_name (string): Name of the table

Returns: Foreign key relationships both referencing and referenced by the table.

Example:

{
  "table_name": "posts"
}

8. introspect_schema

Get a complete schema overview of the database.

Parameters: None

Returns: Comprehensive JSON map of all tables with their columns, primary keys, and foreign key relationships.

Example:

{
  "tool": "introspect_schema"
}

Security Features

  • SQL Injection Protection: Advanced pattern detection and query validation
  • Read-Only Default: Destructive operations are blocked by default
  • Connection Pooling: Secure and efficient database connections
  • SSL Support: Built-in SSL support for secure database connections
  • Parameter Validation: All inputs are validated before execution
  • Query Length Limits: Protection against DoS attacks

Docker Support

Basic Docker Commands

# Build the image
docker build -t mysql-mcp .

# Run with environment variables
docker run --rm \
  -e DB_SERVER=your-mysql-server \
  -e DB_DATABASE=your_database \
  -e DB_USER=your_user \
  -e DB_PASSWORD=your_password \
  mysql-mcp

# Run with .env file
docker run --rm --env-file .env mysql-mcp

# Run with volume mount for configuration
docker run --rm \
  -v $(pwd)/.env:/app/.env \
  mysql-mcp

Docker Compose

Create a docker-compose.yml file:

version: "3.8"

services:
  mysql-mcp:
    build: .
    environment:
      - DB_SERVER=mysql
      - DB_DATABASE=testdb
      - DB_USER=root
      - DB_PASSWORD=rootpassword
      - DB_PORT=3306
    depends_on:
      - mysql
    restart: unless-stopped

  mysql:
    image: mysql:8.0
    environment:
      - MYSQL_ROOT_PASSWORD=rootpassword
      - MYSQL_DATABASE=testdb
    ports:
      - "3306:3306"
    volumes:
      - mysql_data:/var/lib/mysql
    restart: unless-stopped

volumes:
  mysql_data:

Run with Docker Compose:

# Start services
docker-compose up -d

# View logs
docker-compose logs -f mysql-mcp

# Stop services
docker-compose down

# Stop and remove volumes
docker-compose down -v

Scaling with Docker

For high-availability deployments:

version: "3.8"

services:
  mysql-mcp:
    build: .
    deploy:
      replicas: 3
      restart_policy:
        condition: on-failure
        delay: 5s
        max_attempts: 3
    environment:
      - DB_SERVER=mysql-primary
      - DB_DATABASE=proddb
      - DB_USER=${DB_USER}
      - DB_PASSWORD=${DB_PASSWORD}
    depends_on:
      - mysql-primary

  mysql-primary:
    image: mysql:8.0
    environment:
      - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
      - MYSQL_DATABASE=proddb
    volumes:
      - mysql_primary_data:/var/lib/mysql
    deploy:
      placement:
        constraints: [node.role == manager]

volumes:
  mysql_primary_data:

Error Handling

The server includes comprehensive error handling:

  • Database connection errors
  • Query validation errors
  • SQL execution errors
  • Parameter validation errors
  • Graceful shutdown handling

Database Schema Information

The server provides detailed schema information including:

  • Tables: Columns, data types, constraints, and structure
  • Views: Available database views and their definitions
  • Data Types: MySQL-specific data types and constraints
  • Indexes: Primary keys and index information
  • Character Sets: UTF-8 and collation support

Environment Variables

| Variable | Description | Default | Required | | ------------- | --------------------------- | ------------ | -------- | | DB_SERVER | MySQL server hostname or IP | - | โœ… | | DB_DATABASE | Database name | - | โœ… | | DB_USER | Database username | - | โœ… | | DB_PASSWORD | Database password | - | โœ… | | DB_PORT | Database port | 3306 | โŒ | | DB_SSL | SSL configuration | 'Amazon RDS' | โŒ |

SSL Configuration

  • Set DB_SSL=false to disable SSL completely
  • Leave undefined or set to 'Amazon RDS' for AWS RDS SSL support
  • For custom SSL configurations, modify the connection settings in the code

AWS RDS Integration

This MCP server is optimized for AWS RDS MySQL instances:

# AWS RDS Configuration
DB_SERVER=your-rds-instance.region.rds.amazonaws.com
DB_DATABASE=your_database
DB_USER=admin
DB_PASSWORD=your_secure_password
DB_PORT=3306
# DB_SSL is automatically set to 'Amazon RDS' for SSL

RDS Security Groups

Ensure your RDS security group allows connections from your application:

  • Port: 3306 (or your custom port)
  • Source: Your application's IP range or security group

Performance and Scalability

Connection Pooling

The server uses MySQL2's built-in connection pooling:

  • Automatic connection management
  • Connection reuse for better performance
  • Configurable timeout settings (60 seconds default)

Scaling Strategies

  1. Horizontal Scaling: Deploy multiple MCP server instances
  2. Database Read Replicas: Point to MySQL read replicas for read-heavy workloads
  3. Connection Limits: Monitor and configure MySQL max_connections
  4. Resource Monitoring: Use CloudWatch or similar for RDS monitoring

Production Optimization

# Multi-stage build for smaller production images
FROM node:22.20-alpine as builder
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production

FROM node:22.20-alpine as production
WORKDIR /app
COPY --from=builder /app/node_modules ./node_modules
COPY build ./build
CMD ["node", "build/index.js"]

Development

Project Structure

mysql-mcp/
โ”œโ”€โ”€ src/
โ”‚   โ””โ”€โ”€ index.ts               # Main entry point with MCP server implementation
โ”œโ”€โ”€ build/                     # Compiled TypeScript output
โ”œโ”€โ”€ .env                       # Environment configuration
โ”œโ”€โ”€ .dockerignore              # Docker ignore file
โ”œโ”€โ”€ Dockerfile                 # Docker container configuration
โ”œโ”€โ”€ docker-compose.yml         # Docker Compose setup (create this)
โ”œโ”€โ”€ package.json              # Node.js dependencies and scripts
โ”œโ”€โ”€ tsconfig.json             # TypeScript configuration
โ””โ”€โ”€ README.md                 # This documentation

Development Commands

# Install dependencies
npm install

# Start development server with hot reload
npm run dev

# Build for production
npm run build

# Start production server
npm start

# Watch for changes (compile only)
npm run watch

# Clean build directory
npm run clean

Adding New Tools

To add new MCP tools, register them in src/index.ts:

server.registerTool(
  "your_tool_name",
  {
    title: "Your Tool Title",
    description: "Description of what your tool does",
    inputSchema: {
      parameter: z.string().min(1),
    },
  },
  async ({ parameter }) => {
    // Your tool implementation
    const result = await performSomeOperation(parameter);
    return {
      content: [
        {
          type: "text",
          text: JSON.stringify(result, null, 2),
        },
      ],
    };
  }
);

Error Handling

The server includes comprehensive error handling:

  • Database Connection Errors: Automatic retry with exponential backoff
  • Query Validation Errors: Detailed error messages for invalid queries
  • SQL Execution Errors: Safe error reporting without exposing sensitive data
  • Parameter Validation: Type checking and sanitization
  • Graceful Shutdown: Proper cleanup of database connections

Troubleshooting

Common Issues

  1. Connection Refused

    Error: connect ECONNREFUSED
    
    • Check if MySQL server is running
    • Verify DB_SERVER and DB_PORT configuration
    • Check firewall/security group settings
  2. Authentication Failed

    Error: Access denied for user
    
    • Verify DB_USER and DB_PASSWORD
    • Check user permissions in MySQL
    • Ensure user can connect from your host
  3. Database Not Found

    Error: Unknown database
    
    • Verify DB_DATABASE exists
    • Check user has access to the specified database
  4. SSL Connection Issues

    Error: SSL connection error
    
    • For local development: set DB_SSL=false
    • For RDS: ensure SSL certificates are properly configured

Debug Mode

Enable detailed logging by setting NODE_ENV:

NODE_ENV=development npm run dev

Testing

Unit Tests

# Add testing framework
npm install --save-dev jest @types/jest

# Run tests
npm test

Integration Tests

# Test with actual database
npm run test:integration

Load Testing

# Test connection pooling and performance
npm run test:load

Contributing

We welcome contributions! Please follow these guidelines:

Getting Started

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/your-feature-name
  3. Make your changes with proper TypeScript types
  4. Add tests for new functionality
  5. Update documentation as needed
  6. Submit a pull request

Code Style

  • Use TypeScript for all new code
  • Follow ESLint and Prettier configurations
  • Add JSDoc comments for public APIs
  • Use semantic commit messages

Pull Request Process

  1. Ensure all tests pass
  2. Update the README if needed
  3. Add a clear description of changes
  4. Reference any related issues

Changelog

v1.1.0

  • Switched from MSSQL to MySQL support
  • Added AWS RDS SSL compatibility
  • Improved connection pooling
  • Added Docker support with multi-stage builds
  • Enhanced security with query validation

v1.0.0

  • Initial release with basic MCP tools
  • TypeScript implementation
  • Basic Docker support

License

Apache License 2.0 - see LICENSE file for details.

Support

For issues and questions:

  • GitHub Issues: Open an issue
  • Documentation: Check this README for common solutions
  • Community: Join discussions in GitHub Discussions

Related Projects

Acknowledgments

  • Model Context Protocol team for the excellent SDK
  • MySQL2 maintainers for the robust database driver
  • The open-source community for continuous improvements

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

Verifiedcapability-contract

Contract coverage

Status

ready

Auth

mcp, api_key

Streaming

No

Data region

global

Protocol support

MCP: verified

Requires: mcp, lang:typescript

Forbidden: none

Guardrails

Operational confidence: medium

Contract is available with explicit auth and schema references.
Trust confidence is not low and verification freshness is acceptable.
Protocol support is explicitly confirmed in contract metadata.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/snapshot"
curl -s "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/contract"
curl -s "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITLAB_AI_CATALOGgitlab-mcp

Rank

83

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_PUBLIC_PROJECTSgitlab-mcp

Rank

80

A Model Context Protocol (MCP) server for GitLab

Traction

No public download signal

Freshness

Updated 2d ago

MCP
GITLAB_AI_CATALOGrmcp-openapi

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

MCP
GITLAB_AI_CATALOGrmcp-actix-web

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

MCP
Machine Appendix

Contract JSON

{
  "contractStatus": "ready",
  "authModes": [
    "mcp",
    "api_key"
  ],
  "requires": [
    "mcp",
    "lang:typescript"
  ],
  "forbidden": [],
  "supportsMcp": true,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": "https://github.com/Ahmustufa/mysql-mcp#input",
  "outputSchemaRef": "https://github.com/Ahmustufa/mysql-mcp#output",
  "dataRegion": "global",
  "contractUpdatedAt": "2026-02-24T19:45:40.775Z",
  "sourceUpdatedAt": "2026-02-24T19:45:40.775Z",
  "freshnessSeconds": 4440629
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/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-17T05:16:10.492Z"
    }
  },
  "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": "mysql",
      "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": "llm",
      "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:mysql|supported|profile capability:database|supported|profile capability:llm|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-ahmustufa-mysql-mcp/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:40.775Z",
    "isPublic": true
  },
  {
    "factKey": "auth_modes",
    "category": "compatibility",
    "label": "Auth modes",
    "value": "mcp, api_key",
    "href": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:40.775Z",
    "isPublic": true
  },
  {
    "factKey": "schema_refs",
    "category": "artifact",
    "label": "Machine-readable schemas",
    "value": "OpenAPI or schema references published",
    "href": "https://github.com/Ahmustufa/mysql-mcp#input",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/contract",
    "sourceType": "contract",
    "confidence": "high",
    "observedAt": "2026-02-24T19:45:40.775Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Ahmustufa",
    "href": "https://github.com/Ahmustufa/mysql-mcp",
    "sourceUrl": "https://github.com/Ahmustufa/mysql-mcp",
    "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-ahmustufa-mysql-mcp/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/mcp-ahmustufa-mysql-mcp/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 @ahmedmustafamalik/mysql-mcp and adjacent AI workflows.