test-mcp-server

Marty-Kim/test-mcp-server

3.2

If you are the rightful owner of test-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 dayong@mcphub.com.

This is a simple implementation of a Model Context Protocol (MCP) server.

Tools
2
Resources
0
Prompts
0

테스트 MCP 서버

간단한 MCP (Model Context Protocol) 서버 구현 예제입니다.

기능

이 서버는 다음과 같은 기능을 제공합니다:

  1. 계산기 도구 - 간단한 수학 연산 수행
  2. 날짜/시간 정보 - 현재 날짜와 시간 제공
  3. 텍스트 변환 - 대소문자 변환, 역순 변환 등

설치 방법

# 의존성 패키지 설치
pip install -r requirements.txt

실행 방법

# MCP 서버 실행
python server.py

사용 방법

Cursor나 다른 MCP 클라이언트에서 이 서버를 사용하려면 MCP 설정에 다음을 추가하세요:

{
  "mcpServers": {
    "test-server": {
      "command": "python",
      "args": ["/Users/ntoday/test-mcp-server/server.py"]
    }
  }
}

프로젝트 구조

test-mcp-server/
├── README.md           # 프로젝트 문서
├── requirements.txt    # Python 의존성
├── server.py          # MCP 서버 메인 파일
└── tools/             # 도구 구현 모듈
    ├── __init__.py
    ├── calculator.py  # 계산기 도구
    └── text_utils.py  # 텍스트 유틸리티 도구

기술 스택

  • Python 3.8+
  • MCP SDK