# simple-mcp-test

> MCP Server

This repository offers a basic MCP (Multi-Client Protocol) implementation showcasing client-server communication. It includes a test script demonstrating functionalities like `call_tool()` and `read_resource()`, licensed under the MIT License.

## Overview

- **Category:** Developer Tools
- **Language:** Python
- **Stars:** 0
- **Forks:** 0
- **Owner:** tjjd4
- **GitHub:** https://github.com/tjjd4/simple-mcp-test
- **Created:** 2025-03-27T13:10:58+00:00
- **Updated:** 2025-03-27T13:21:39+00:00
- **Source:** https://model-context-protocol.com/servers/simple-mcp-client-server-communication-test

## Setup

## Setup

1. Clone the repository:
```bash
git clone https://github.com/tjjd4/simple-mcp-test.git
cd simple-mcp-test
```

2. Create and activate a virtual environment (recommended):
```bash
python -m venv .venv # using python and pip
uv venv  # using uv

source .venv/bin/activate  # On Windows: .venv\Scripts\activate
```

3. Install the required dependencies:
```bash
uv run pip install -r pyproject.toml # using uv
```

4. Run the test script:
```bash
export PYTHONPATH=$(pwd)
python scripts/test_simple_mcp.py
```

## Tools

## Available Tools

1. `call_tool()` (Demonstrates basic functionality.)
2. `read_resource()` (Demonstrates basic functionality.)
