MCP server intelligence profile

MCP MySQL Server MCP Server

A Model Context Protocol server that enables AI models to interact with MySQL databases through a standardized interface, providing tools for querying, executing commands, and managing database schemas

Local Onlykevinbin
Awaiting current scanSource Git · a4f391accee40fc987d5590fee83b93d1a514541

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
7Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

No verified installation or connection method is available in the retained evidence yet.

Identity

Canonical slugmcp-mysql-server-aaa34c09DeploymentLocal Only
Canonical packageRepositorykevinbin/mcp-mysql-server
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitkevinbin/mcp-mysql-servera4f391accee40fc987d5590fee83b93d1a5145411Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitkevinbin/mcp-mysql-servera4f391accee40fc987d5590fee83b93d1a514541CurrentAug 25, 20267 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2024-11-05Negotiated protocol
mysql-serverServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 7

ToolCategoryAnnotationsRisk
add_columnAdd a new column to existing table
Input schema
{
  "type": "object",
  "properties": {
    "table": {
      "type": "string"
    },
    "field": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "type": {
          "type": "string"
        },
        "length": {
          "type": "number",
          "optional": true
        },
        "nullable": {
          "type": "boolean",
          "optional": true
        },
        "default": {
          "type": [
            "string",
            "number",
            "null"
          ],
          "optional": true
        }
      },
      "required": [
        "name",
        "type"
      ]
    }
  },
  "required": [
    "table",
    "field"
  ]
}
connect_dbConnect to MySQL database using URL or config
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Database URL (mysql://user:pass@host:port/db)",
      "optional": true
    },
    "workspace": {
      "type": "string",
      "description": "Project workspace path",
      "optional": true
    },
    "host": {
      "type": "string",
      "optional": true
    },
    "user": {
      "type": "string",
      "optional": true
    },
    "password": {
      "type": "string",
      "optional": true
    },
    "database": {
      "type": "string",
      "optional": true
    }
  }
}
create_tableCreate a new table in the database
Input schema
{
  "type": "object",
  "properties": {
    "table": {
      "type": "string",
      "description": "Table name"
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "length": {
            "type": "number",
            "optional": true
          },
          "nullable": {
            "type": "boolean",
            "optional": true
          },
          "default": {
            "type": [
              "string",
              "number",
              "null"
            ],
            "optional": true
          },
          "autoIncrement": {
            "type": "boolean",
            "optional": true
          },
          "primary": {
            "type": "boolean",
            "optional": true
          }
        },
        "required": [
          "name",
          "type"
        ]
      }
    },
    "indexes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "columns": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "unique": {
            "type": "boolean",
            "optional": true
          }
        },
        "required": [
          "name",
          "columns"
        ]
      },
      "optional": true
    }
  },
  "required": [
    "table",
    "fields"
  ]
}
describe_tableGet table structure
Input schema
{
  "type": "object",
  "properties": {
    "table": {
      "type": "string",
      "description": "Table name"
    }
  },
  "required": [
    "table"
  ]
}
executeExecute an INSERT, UPDATE, or DELETE query
Input schema
{
  "type": "object",
  "properties": {
    "sql": {
      "type": "string",
      "description": "SQL query (INSERT, UPDATE, DELETE)"
    },
    "params": {
      "type": "array",
      "items": {
        "type": [
          "string",
          "number",
          "boolean",
          "null"
        ]
      },
      "description": "Query parameters (optional)"
    }
  },
  "required": [
    "sql"
  ]
}
list_tablesList all tables in the database
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
queryExecute a SELECT query
Input schema
{
  "type": "object",
  "properties": {
    "sql": {
      "type": "string",
      "description": "SQL SELECT query"
    },
    "params": {
      "type": "array",
      "items": {
        "type": [
          "string",
          "number",
          "boolean",
          "null"
        ]
      },
      "description": "Query parameters (optional)"
    }
  },
  "required": [
    "sql"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

MCP MySQL Server MCP Server questions

How do I install MCP MySQL Server MCP Server?

No verified package installation command is available in the retained catalog evidence.

What tools does MCP MySQL Server MCP Server provide?

MCP MySQL Server MCP Server exposed 7 tools during independent protocol observation, including add_column, connect_db, create_table, describe_table, execute, list_tables, query.

Is MCP MySQL Server MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Database MCP ServersOfficial vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.