Metadata-Version: 2.4
Name: agentoath-mcp-server
Version: 0.1.0
Summary: AgentOath MCP Server -- expose trust protocol tools to any MCP-compatible AI agent (Claude, ChatGPT, etc.).
Author-email: AgentOath Protocol Team <team@agentoath.ai>
License: Apache-2.0
Project-URL: Homepage, https://agentoath.ai
Project-URL: Repository, https://github.com/AgentOath/agentoath
Project-URL: Documentation, https://agentoath.ai/docs/integrations/mcp
Keywords: ai,agent,trust,mcp,agentoath,identity,model-context-protocol
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Security :: Cryptography
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: agentoath>=0.2.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"

# AgentOath MCP Server

Model Context Protocol (MCP) tool provider for the [AgentOath](https://agentoath.ai) trust protocol.

Lets any MCP-compatible AI agent (Claude, ChatGPT, etc.) create verifiable identities, sign trust receipts, and check trust scores -- all through the standard MCP tool interface.

## Quick Start

```bash
# Install
pip install agentoath-mcp-server

# Run the MCP server (stdio transport)
agentoath-mcp
```

### Claude Desktop Configuration

Add to `~/.claude/claude_desktop_config.json`:

```json
{
  "mcpServers": {
    "agentoath": {
      "command": "agentoath-mcp",
      "args": ["--agent-dir", "~/.agentoath"]
    }
  }
}
```

## Available Tools

| Tool | Description |
|------|-------------|
| `agentoath_create_identity` | Create a new agent identity with Ed25519 keypair |
| `agentoath_sign_receipt` | Sign a trust receipt for an interaction |
| `agentoath_verify_receipt` | Verify a receipt's cryptographic signature |
| `agentoath_check_trust` | Check an agent's computed trust score |
| `agentoath_lookup_agent` | Look up agent info by DID |
| `agentoath_list_receipts` | List receipts for an agent |

## Protocol

The server implements JSON-RPC over stdio, compatible with the MCP specification (2024-11-05).

## Development

```bash
pip install -e ".[dev]"
pytest
```

## License

Apache-2.0
