Metadata-Version: 2.4
Name: iflow-mcp_arvind-narayan-mcp-agents-workshop
Version: 0.1.0
Summary: MCP Agents Workshop - Educational MCP server examples
Project-URL: Homepage, https://github.com/iflow-mcp/arvind-narayan-mcp-agents-workshop
Project-URL: Repository, https://github.com/iflow-mcp/arvind-narayan-mcp-agents-workshop
Project-URL: Issues, https://github.com/iflow-mcp/arvind-narayan-mcp-agents-workshop/issues
Author-email: Arvind Narayan <arvind@example.com>
License: MIT
Keywords: educational,mcp,model-context-protocol,workshop
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Requires-Dist: datetime>=5.5
Requires-Dist: mcp[cli]>=1.0.0
Provides-Extra: dev
Requires-Dist: ipykernel>=6.29.5; extra == 'dev'
Requires-Dist: python-dotenv>=1.1.0; extra == 'dev'
Description-Content-Type: text/markdown

This repo contains code you will be developing during the hands on session.

## Handy Commands

### 1. Set Up Virtual Environment


```bash
python3 -m venv .
source bin/activate # for Mac users
.Scripts\activate # for windows users
```

### 2. Install Packages for the workshop

```bash
pip install -r requirements.txt
```

### 3. Run MCP server

```bash
python 1_MCP/server.py 
```

### 4. Run MCP inspector

```bash
mcp dev 1_MCP/server.py
```



