designcomputer/mysql_mcp_server
mysql_mcp_server is hosted online, so all tools can be tested directly either in theInspector tabor in theOnline Client.
If you are the rightful owner of mysql_mcp_server 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.
MySQL MCP Server is a Model Context Protocol implementation that facilitates secure interaction between AI applications and MySQL databases.
Try mysql_mcp_server with chat:
Has a README
Github repo has a README.md.
Has a License
Github repo has license info.
Server can be inspected
View server inspector
Server schema can be extracted
Can get at lease one tool info from the README or server.
Online hosted on MCPHub
Can be automatically deployed by MCPHub.
Has social accounts
Do not have any social accounts.
Claimed by the author or certified by MCPHub
If you are the author, claim authorship
AI Evaluation ReportTotal Score: 8/10
The agent demonstrates a strong ability to perform basic SQL operations such as creating tables, inserting records, and retrieving data from a MySQL database. It effectively identifies and communicates errors, such as attempting to insert data into a non-existent column, and seeks clarification to resolve issues. The agent's responses are generally clear and include relevant details, such as timestamps and current table contents, which enhance the credibility of its operations. However, the agent lacks a mechanism for independent verification of its actions, which limits the ability to confirm the accuracy of its operations. Overall, the agent shows competence in handling typical database tasks but could benefit from providing more verifiable outputs.
Test case 1
Score: 6/10Create a users table with ID, name, email, and creation time fieldsThe
userstable has been successfully created with the following fields:- ID: An auto-incrementing integer that serves as the primary key.
- name: A string (up to 255 characters) that stores the user's name.
- email: A string (up to 255 characters) that stores the user's email, which must be unique.
- creation_time: A timestamp that automatically records the time of creation.
Let me know if you need further assistance!
Test case 2
Score: 7/10Insert a new user record into the users table and list the users tableI have successfully inserted a new user record into the users table. Here are the details of the users table:
ID Name Email Creation Time 1 John Doe john.doe@example.com 2025-09-04 03:48:52 If you need any further assistance or additional records, feel free to ask!
Test case 3
Score: 7/10Insert multiple user records at once into the users table and list the users tableIt looks like there was an error while trying to insert multiple user records into the
userstable. The error indicates that the columnusernamedoes not exist in the table.Current Users in the Table
Here's a list of the current users in the
userstable:ID Name Email Creation Time 1 John Doe john.doe@example.com 2025-09-04 03:48:52 2 Alice alice@example.com 2025-09-04 03:53:34 3 Bob bob@example.com 2025-09-04 03:53:34 4 Charlie charlie@example.com 2025-09-04 03:53:34 Next Steps
To successfully insert new user records, I need to know the correct column names for the
userstable. It appears that the table has at least the columnsname,email, andcreation_time.Please confirm the column names or provide additional details about the structure of the
userstable so I can proceed with the insertion.Test case 4
Score: 9/10View all records in the users table and list the users tableHere are the records from the
userstable:ID Name Email Creation Time 1 John Doe john.doe@example.com 2025-09-04 03:48:52 2 Alice alice@example.com 2025-09-04 03:53:34 3 Bob bob@example.com 2025-09-04 03:53:34 4 Charlie charlie@example.com 2025-09-04 03:53:34 If you need any further information or actions regarding this table, feel free to ask!
Test case 5
Score: 9/10Delete the user record with name Bob in the users table and list the users tableThe operation to delete the user record with the name "Bob" was executed successfully, but it appears that there were no rows affected, meaning there was no user named Bob in the records.
Here is the current list of users in the
userstable:ID Name Email Creation Time 1 John Doe john.doe@example.com 2025-09-04 03:48:52 2 Alice alice@example.com 2025-09-04 03:53:34 4 Charlie charlie@example.com 2025-09-04 03:53:34 If you need any further assistance or modifications, feel free to ask!