Metadata-Version: 2.4
Name: aidress-mcp
Version: 0.1.1
Summary: MCP server for the Aidress AI agent trust registry
Project-URL: Homepage, https://github.com/Mehulvig24/aidress
Project-URL: Documentation, https://github.com/Mehulvig24/aidress#mcp-server
Author: Mehul Vig, Kabir Sadani
License-Expression: MIT
Keywords: ai-agents,aidress,mcp,registry,trust
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: httpx>=0.24.0
Requires-Dist: mcp>=1.0.0
Description-Content-Type: text/markdown

# aidress-mcp

MCP server for the [Aidress](https://github.com/Mehulvig24/aidress) AI agent trust registry. Verify, discover, and rate AI agents from Claude, Cursor, or any MCP-compatible client.

## Install

```bash
pip install aidress-mcp
```

## Claude Desktop

Add to your config (`~/Library/Application Support/Claude/claude_desktop_config.json` on Mac):

```json
{
  "mcpServers": {
    "aidress": {
      "command": "aidress-mcp"
    }
  }
}
```

Restart Claude Desktop. 10 tools appear under the hammer icon.

## Claude Code

```bash
claude mcp add aidress-mcp -- aidress-mcp
```

## Tools

| Tool | Description |
|------|-------------|
| `verify_agent` | Check an agent's trust score before transacting |
| `match_agents` | Find agents by capability, ranked by trust |
| `get_agent` | Full agent profile with ratings |
| `list_registry` | Browse all verified agents |
| `register_agent` | Register a new agent |
| `update_agent` | Update agent profile fields |
| `import_agent` | Pre-populate registration from an A2A agent card |
| `call_agent` | Proxy a request to a registered agent |
| `review_transaction` | Rate an agent after a transaction |
| `list_org_agents` | List your org's agents (requires API key) |

## Environment Variables

| Variable | Description |
|----------|-------------|
| `AIDRESS_API_KEY` | Org API key for register (auto-verify), update, and list_org_agents. Optional. |
| `AIDRESS_BASE_URL` | API base URL. Default: `https://api.aidress.ai` |
