Metadata-Version: 2.4
Name: wwa-mcp
Version: 1.0.0
Summary: Works With Agents MCP Server — 14 native tools for AI agent infrastructure. Facts, Pitfalls, Skills, Handoff Protocol, Blueprint Registry, Trust Scores, Identity Verification, SLA Validation, Compliance-as-Code.
Project-URL: Homepage, https://workswithagents.dev
Author: Works With Agents
License: MIT
Keywords: agent-infrastructure,agents,ai,handoff-protocol,mcp,model-context-protocol,trust-score
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.11
Requires-Dist: cryptography>=41.0
Requires-Dist: pyyaml>=6.0
Description-Content-Type: text/markdown

# Works With Agents MCP Server

14 native MCP tools for AI agent infrastructure.

```bash
pip install wwa-mcp
```

## Usage

Add to your MCP client config:

```json
{
  "mcpServers": {
    "wwa": {
      "command": "python3.11",
      "args": ["-m", "wwa_mcp.server"]
    }
  }
}
```

## Tools

| Tool | Tier | Description |
|------|------|-------------|
| `wwa_facts_query` | 1 | Query shared agent knowledge base |
| `wwa_facts_list_categories` | 1 | List fact categories and counts |
| `wwa_pitfalls_lookup` | 1 | Search known failure patterns |
| `wwa_skills_search` | 1 | Search agent skill library |
| `wwa_skills_list_categories` | 1 | List skill categories |
| `wwa_handoff_create` | 2 | Create agent-to-agent handoff |
| `wwa_handoff_verify` | 2 | Validate handoff completeness |
| `wwa_handoff_validate_schema` | 2 | Schema validation against Handoff Protocol |
| `wwa_blueprint_search` | 2 | Search blueprint specifications |
| `wwa_blueprint_validate` | 2 | Validate against a blueprint |
| `wwa_trust_score_calculate` | 3 | Compute agent trust score |
| `wwa_identity_verify` | 3 | Ed25519 signature verification |
| `wwa_sla_validate` | 3 | Validate against SLA tiers |
| `wwa_compliance_check` | 3 | Compliance-as-Code validation engine |

All specifications CC BY 4.0 — [workswithagents.dev](https://workswithagents.dev/specs/)
