mysql-mcp-server-java

mysql-mcp-server-java

3.4

If you are the rightful owner of mysql-mcp-server-java and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

Spring Boot server implementing Model Context Protocol (MCP) for MySQL database operations.

query

Execute a SELECT SQL query and return results. Input: `sql` (string). Returns: List of query results (truncated after 4000 characters). Note: Only SELECT queries are allowed.

listAllTablesName

List all table names in the database. No input required. Returns: Comma-separated list of table names.

getTableSchema

Get schema information for a specific table. Input: `tableName` (string). Returns: Comma-separated list of column information including: Column name, Data type, Nullable constraint, Default value.