Metadata-Version: 2.4
Name: mcp-test-harness-mistral
Version: 0.1.0
Summary: Mistral AI testing helpers for MCP Test Harness
Project-URL: Homepage, https://github.com/vaquarkhan/mcp-test-harness
Project-URL: Repository, https://github.com/vaquarkhan/mcp-test-harness
Author-email: Vaquar Khan <vaquarkhan@gmail.com>
License: Non-commercial use only with mandatory attribution
Keywords: mcp,mcp-test-harness,mistral,testing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.10
Requires-Dist: mcp-test-harness>=0.1.0
Description-Content-Type: text/markdown

# mcp-test-harness-mistral

Mistral AI testing helpers for [MCP Test Harness](https://github.com/vaquarkhan/mcp-test-harness).

Author: Vaquar Khan -- https://github.com/vaquarkhan

## Install

```bash
pip install mcp-test-harness-mistral
```

This automatically installs `mcp-test-harness` as a dependency.

## Usage

```python
from mcp_test_harness import assert_tool_call, assert_capabilities

async def test_server(mcp_server):
    await assert_capabilities(mcp_server, {"tools": {}})
    await assert_tool_call(mcp_server, "my_tool", {})
```

## License

Non-commercial use only with mandatory attribution. See [LICENSE](https://github.com/vaquarkhan/mcp-test-harness/blob/main/LICENSE).
