設定手順
@nsh58
About 設定手順
No overview available yet
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"mysql": {
"command": "uv",
"args": [
"--directory",
"/path/to/mcp-server-mysql",
"run",
"main.py"
],
"env": {
"MYSQL_HOST": "",
"MYSQL_PORT": "",
"MYSQL_USER": "",
"MYSQL_PASSWORD": "",
"MYSQL_DATABASE": ""
}
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is 設定手順?
設定手順 provides step‑by‑step instructions for setting up a development environment for an MCP server that connects to a MySQL database. The configuration snippet shows how to register the server in an LLM application’s settings, using environment variables for database credentials.
How to use 設定手順?
Follow the five steps: (1) create a virtual environment with uv venv, (2) activate it with source .venv/bin/activate, (3) install dependencies with uv pip install -r requirements.txt, (4) add the mysql MCP server configuration to the LLM app’s settings file, (5) the server is then ready to be used by the LLM application.
Key features of 設定手順
- Step‑by‑step environment setup using
uv - Automatically installs required Python dependencies
- Includes a ready‑to‑use MCP server configuration for MySQL
- Uses environment variables for database connection details
Use cases of 設定手順
—
FAQ from 設定手順
What does 設定手順 do?
It describes how to prepare a development environment for an MCP server that interacts with MySQL, including dependency installation and configuring the server for an LLM app.
What dependencies does it require?
The README mentions a requirements.txt file that lists required Python libraries, but the exact contents are not specified.
Where is the data stored?
The server connects to a MySQL database; connection parameters are provided via environment variables (MYSQL_HOST, MYSQL_PORT, etc.).
What transport or authentication does it use?
The README does not specify the transport protocol or authentication mechanism. The configuration only shows environment‑variable‑based credentials for MySQL.
Is there any runtime requirement?
Python and the uv tool are needed. The README assumes uv is installed and uses it for virtual environment and package management.
More Databases MCP servers
Elasticsearch/OpenSearch MCP Server
cr7258A Model Context Protocol (MCP) server implementation that provides Elasticsearch and OpenSearch interaction.
Redis MCP Server
redisThe official Redis MCP Server is a natural language interface designed for agentic applications to manage and search data in Redis efficiently
MongoDB Lens
furey🍃🔎 MongoDB Lens: Full Featured MCP Server for MongoDB Databases
Elasticsearch MCP Server
elasticmcp-server-duckdb
ktanaka101A Model Context Protocol (MCP) server implementation for DuckDB, providing database interaction capabilities
Comments