Metadata-Version: 2.4
Name: webnostix-llm-tools-mcp
Version: 0.1.0
Summary: MCP server exposing Claude LLM tools for workflows
Project-URL: Homepage, https://github.com/anthropics/mcp-aggregator
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: fastmcp>=2.0
Requires-Dist: anthropic>=0.25.0

# webnostix-llm-tools-mcp

MCP server that exposes Claude (Anthropic) as callable MCP tools so workflows can perform LLM operations — summarisation, extraction, transformation, etc.

## Installation

```bash
pip install webnostix-llm-tools-mcp
```

## Usage

```bash
ANTHROPIC_API_KEY=sk-... webnostix-llm-tools-mcp
```

## Tools

- `llm_call` — Call a Claude model with a prompt
- `llm_extract` — Extract structured data from text as JSON

## MCP Aggregator config

```json
{
  "command": "webnostix-llm-tools-mcp",
  "env": { "ANTHROPIC_API_KEY": "sk-..." }
}
```
