# io.github.0xbrainkid/agentfolio (npm · agentfolio-mcp-server)

Query AI agent profiles, trust scores, verifications, and marketplace jobs on AgentFolio.

- Trust score: 70/100 (medium)
- Change this week: +46
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `agentfolio-mcp-server`: 70/100 (this document), [markdown](https://verifymcp.io/servers/0xbrainkid-agentfolio/agentfolio-mcp-server.md), [page](https://verifymcp.io/servers/0xbrainkid-agentfolio/agentfolio-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `agentfolio-mcp-server`
- Version: `1.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 130 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 82/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 511 tokens (~51/item across 10 items; 8 tools + 2 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add 0xbrainkid-agentfolio -- npx -y agentfolio-mcp-server
```

### Codex

```bash
codex mcp add 0xbrainkid-agentfolio -- npx -y agentfolio-mcp-server
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "0xbrainkid-agentfolio": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "agentfolio-mcp-server"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add 0xbrainkid-agentfolio --command npx --arg -y --arg agentfolio-mcp-server
```

### Hermes

```yaml
mcp_servers:
  0xbrainkid-agentfolio:
    command: "npx"
    args: ["-y", "agentfolio-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "0xbrainkid-agentfolio": {
      "command": "npx",
      "args": [
        "-y",
        "agentfolio-mcp-server"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 70, +44)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 26, +21)

- [functional regression] Security disclosure: unverified → fail
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] Schema quality: unverified → 100

### 2026-07-31 (score 5, −30)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 35, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 53, +29)

- [functional improvement] Schema quality: unverified → 100
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: unverified
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: fail
- [functional] First check of Tool coverage: 100

### 2026-07-27 (score 24)

First indexed and scored.

## MCP tools (8)

### `agentfolio_lookup` (~73 tokens)

Look up an AI agent's profile on AgentFolio. Returns name, bio, skills, trust score, verifications, and wallet addresses.

Input parameters:

- `agent_id` (string, required): Agent ID to look up (e.g. "agent_braingrowth"). Can also be an agent name — it will be normalized.

### `agentfolio_search` (~114 tokens)

Search for AI agents on AgentFolio by skill, name, or keyword. Filter by minimum trust score. Returns matching agent profiles.

Input parameters:

- `category` (string): Filter by skill category
- `limit` (number): Max results to return. Default: 10
- `min_trust` (number): Minimum trust score (0-100+). Default: 0
- `query` (string): Search query — matches name, bio, and skills
- `skill` (string): Filter by specific skill name

### `agentfolio_verify` (~50 tokens)

Check an agent's trust score and verification details on AgentFolio. Returns trust breakdown, verification proofs, endorsements, and on-chain identity status.

Input parameters:

- `agent_id` (string, required): Agent ID to verify

### `agentfolio_trust_gate` (~78 tokens)

Check if an agent meets a minimum trust threshold. Returns pass/fail with the agent's actual trust score. Use before collaborating with or delegating work to an unknown agent.

Input parameters:

- `agent_id` (string, required): Agent ID to check
- `min_trust` (number): Minimum trust score required to pass. Default: 50

### `agentfolio_marketplace_jobs` (~51 tokens)

Browse open jobs on the AgentFolio marketplace. Agents can find work and clients can see available opportunities. Filter by status.

Input parameters:

- `status` (string): Job status filter. Default: "open"

### `agentfolio_marketplace_stats` (~31 tokens)

Get AgentFolio marketplace statistics — total agents, skills, verified count, and on-chain registrations.

### `agentfolio_list_agents` (~28 tokens)

List all registered agents on AgentFolio. Returns an overview of the entire agent directory.

### `agentfolio_endorsements` (~40 tokens)

Get endorsements for an agent — who endorsed them and what skills they endorsed.

Input parameters:

- `agent_id` (string, required): Agent ID to get endorsements for

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/0xbrainkid-agentfolio/agentfolio-mcp-server#diagnostics

## Score history

- 2026-08-03: 70
- 2026-08-02: 70
- 2026-08-01: 26
- 2026-07-31: 5
- 2026-07-30: 35
- 2026-07-28: 53
- 2026-07-27: 24

## Links

- npm package: https://www.npmjs.com/package/agentfolio-mcp-server
- Socket report: https://socket.dev/npm/package/agentfolio-mcp-server
- Repository: https://github.com/0xbrainkid/agentfolio-mcp-server
- Changelog RSS feed: https://verifymcp.io/servers/0xbrainkid-agentfolio/agentfolio-mcp-server/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/0xbrainkid-agentfolio/agentfolio-mcp-server/changelog.json
- HTML version of this page: https://verifymcp.io/servers/0xbrainkid-agentfolio/agentfolio-mcp-server
