mcp-mysql-server

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Allows AI models to interact with MySQL databases through a standardized interface, enabling operations like connecting to a database, executing queries, listing tables, and describing table structures.

@f4ww4z/mcp-mysql-서버

MySQL 데이터베이스 작업을 제공하는 모델 컨텍스트 프로토콜 서버입니다. 이 서버를 통해 AI 모델은 표준화된 인터페이스를 통해 MySQL 데이터베이스와 상호 작용할 수 있습니다.

설치

Smithery를 통해 설치

Smithery를 통해 Claude Desktop에 MySQL 서버를 자동으로 설치하려면:

지엑스피1

수동 설치

npx @f4ww4z/mcp-mysql-server

구성

서버를 사용하려면 MCP 설정 구성 파일에 다음 환경 변수를 설정해야 합니다.

{ "mcpServers": { "mysql": { "command": "npx", "args": ["-y", "@f4ww4z/mcp-mysql-server"], "env": { "MYSQL_HOST": "your_host", "MYSQL_USER": "your_user", "MYSQL_PASSWORD": "your_password", "MYSQL_DATABASE": "your_database" } } } }

사용 가능한 도구

1. 연결_DB

제공된 자격 증명을 사용하여 MySQL 데이터베이스에 대한 연결을 설정합니다.

use_mcp_tool({ server_name: "mysql", tool_name: "connect_db", arguments: { host: "localhost", user: "your_user", password: "your_password", database: "your_database" } });

2. 질의

선택적으로 준비된 명령문 매개변수를 사용하여 SELECT 쿼리를 실행합니다.

use_mcp_tool({ server_name: "mysql", tool_name: "query", arguments: { sql: "SELECT * FROM users WHERE id = ?", params: [1] } });

3. 실행하다

선택적으로 준비된 명령문 매개변수를 사용하여 INSERT, UPDATE 또는 DELETE 쿼리를 실행합니다.

use_mcp_tool({ server_name: "mysql", tool_name: "execute", arguments: { sql: "INSERT INTO users (name, email) VALUES (?, ?)", params: ["John Doe", "john@example.com"] } });

4. 리스트_테이블

연결된 데이터베이스에 있는 모든 테이블을 나열합니다.

use_mcp_tool({ server_name: "mysql", tool_name: "list_tables", arguments: {} });

5. 설명_테이블

특정 테이블의 구조를 가져옵니다.

use_mcp_tool({ server_name: "mysql", tool_name: "describe_table", arguments: { table: "users" } });

특징

  • 자동 정리를 통한 안전한 연결 처리
  • 쿼리 매개변수에 대한 준비된 명령문 지원
  • 포괄적인 오류 처리 및 검증
  • TypeScript 지원
  • 자동 연결 관리

보안

  • SQL 주입을 방지하기 위해 준비된 명령문을 사용합니다.
  • 환경 변수를 통해 안전한 암호 처리를 지원합니다.
  • 실행 전에 쿼리를 검증합니다.
  • 완료되면 자동으로 연결을 닫습니다.

오류 처리

서버는 일반적인 문제에 대한 자세한 오류 메시지를 제공합니다.

  • 연결 실패
  • 잘못된 쿼리
  • 매개변수가 누락되었습니다
  • 데이터베이스 오류

기여하다

기여를 환영합니다! https://github.com/f4ww4z/mcp-mysql-server 에 풀 리퀘스트를 제출해 주세요.

특허

MIT

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

이 서버는 표준화된 인터페이스를 통해 AI 모델이 MySQL 데이터베이스와 상호 작용할 수 있도록 합니다.

  1. Installation
    1. Installing via Smithery
    2. Manual Installation
  2. Configuration
    1. Available Tools
      1. 1. connect_db
      2. 2. query
      3. 3. execute
      4. 4. list_tables
      5. 5. describe_table
    2. Features
      1. Security
        1. Error Handling
          1. Contributing
            1. License
              ID: qma33al6ie