Metadata-Version: 2.4
Name: iflow-mcp_lukeage-python-pip-mcp
Version: 0.1.0
Summary: Minimal Example Implementation of an Anthropic MCP Server in Python with Pip
Project-URL: Homepage, https://github.com/lukeage/python-pip-mcp
Project-URL: Repository, https://github.com/lukeage/python-pip-mcp
License-File: LICENSE
Requires-Python: >=3.8
Requires-Dist: anthropic>=0.15.0
Requires-Dist: mcp>=0.1.0
Requires-Dist: python-dotenv>=1.0.0
Description-Content-Type: text/markdown

# python-pip-mcp

Minimal Example Implementation of an Anthropic [MCP](https://modelcontextprotocol.io/introduction) Client and Server in Python with Pip. 

The goal of this repository is to provide a reference implementation of a **mcp client and server** that can be easily debugged in VSCode on Windows using the Python / Python Debugger extension.

Alternative IDEs and OS are not tested but should work with minimal adjustments, too.

## Installation

```powershell
# create venv
python -m venv myenv
myenv\Scripts\activate

# install requirements
pip install -r requirements.txt

# create a .env file and set your anthropic api key
cp .env.sample .env

# run mcp_client.py script
python mcp_client.py

# query for current time
```

