Metadata-Version: 2.4
Name: nmdc-mcp
Version: 0.2.1
Summary: MCP tool for querying NMDC API
Project-URL: Homepage, https://github.com/microbiomedata/nmdc-mcp
Project-URL: Bug Tracker, https://github.com/microbiomedata/nmdc-mcp/issues
Author-email: Chris Mungall <cjmungall@lbl.gov>
Requires-Python: >=3.11
Requires-Dist: fastmcp>=2.7.1
Requires-Dist: requests>=2.32.4
Description-Content-Type: text/markdown

# NMDC MCP

A fastmcp-based tool for writing prompts against data in the NMDC database.

## Installation

You can install the package from source:

```bash
pip install -e .
```

Or using uv:

```bash
uv pip install -e .
```

## Usage

You can use the CLI:

```bash
nmdc-mcp
```

Or import in your Python code:

```python
from nmdc_mcp.main import create_mcp

mcp = create_mcp()
mcp.run()
```

## Development

### Local Setup

```bash
# Clone the repository
git clone https://github.com/username/nmdc-mcp.git
cd nmdc-mcp

# Install development dependencies
uv pip install -e ".[dev]"
```

### Running Tests

```bash
pytest
```

## License

MIT