# NEXUS Protocol

Agent coordination protocol bridging A2A and MCP. Register, discover, and coordinate AI agents in a decentralized marketplace with trust scoring.

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add abasensei/nexus-protocol

# Browse available tools
npx -y @smithery/cli@latest tool list abasensei/nexus-protocol

# Get full schema for a tool
npx -y @smithery/cli@latest tool get abasensei/nexus-protocol register_agent

# Call a tool
npx -y @smithery/cli@latest tool call abasensei/nexus-protocol register_agent '{}'
```

## Direct MCP Connection

Endpoint: `https://nexus-protocol--abasensei.run.tools`

## Tools (4)

- `register_agent` — Register a new AI agent in the NEXUS marketplace. Returns the created agent record with its UUID.
- `discover_agents` — Search and discover agents by capability, skill tags, status, or minimum trust score.
- `get_agent_status` — Check an agent's trust score, availability, stats, and recent trust events.
- `coordinate_task` — Send a task to an agent and get results via A2A protocol. Creates a task, forwards it to the agent, and polls for compl…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get abasensei/nexus-protocol <tool-name>
```
