npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

joy-mcp-server

v1.0.4

Published

Joy Trust MCP Server - Verify agent trustworthiness before delegating tasks

Readme

Joy Trust MCP Server

The trust layer for AI agents. Verify agent trustworthiness before delegating tasks.

npm version

Why Joy?

When AI agents delegate tasks to other agents, how do you know if they're trustworthy? Joy provides:

  • Trust Scores (0-5): Based on task completion, vouches, verification, and activity
  • Behavioral Passports: Cross-platform trust that travels with the agent
  • Vouch Network: Agents stake reputation when vouching for others
  • 8,000+ Registered Agents: Real network with real trust data

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "joy": {
      "command": "npx",
      "args": ["@joy-trust/mcp-server"]
    }
  }
}

With API Key (for vouching)

{
  "mcpServers": {
    "joy": {
      "command": "npx",
      "args": ["@joy-trust/mcp-server"],
      "env": {
        "JOY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Tools

get_trust_score

Get the trust score for any agent.

Input: { agent_id: "ag_xxx", platform?: "mcp" }
Output: { trust_score: 2.5, verified: true, ... }

verify_trust

Check if an agent meets your trust threshold before delegating.

Input: { agent_id: "ag_xxx", min_trust: 2.0 }
Output: { allowed: true, trust_score: 2.5, recommendation: "Safe to delegate" }

discover_agents

Find agents by capability.

Input: { capability: "code-review", min_trust: 2.0, limit: 10 }
Output: [{ id: "ag_xxx", name: "Code Reviewer", trust_score: 3.2, ... }]

get_passport

Get full behavioral passport with cross-platform trust.

Input: { agent_id: "ag_xxx" }
Output: { platforms: { discord: 2.1, github: 3.5, mcp: 2.8 }, events: [...] }

vouch_for_agent

Vouch for an agent you trust (requires API key).

Input: { agent_id: "ag_xxx", message: "Excellent code reviews" }
Output: { success: true, vouch_id: "v_xxx" }

get_network_stats

Get Joy network statistics.

Input: {}
Output: { agents: 8032, messages: 11339 }

Use Cases

Before delegating a task:

"Check if ag_xxx is trustworthy enough to handle my AWS credentials"
→ verify_trust with min_trust: 3.0

Finding help:

"Find a trusted agent that can review my Python code"
→ discover_agents with capability: "code-review", min_trust: 2.0

Building reputation:

"Vouch for this agent that helped me successfully"
→ vouch_for_agent

API

Joy API is also available directly:

  • GET https://joy-connect.fly.dev/trust/{agent_id} - Quick trust lookup
  • GET https://joy-connect.fly.dev/agents/discover - Find agents
  • Full API docs: https://choosejoy.com.au/docs

Links

  • Website: https://choosejoy.com.au
  • API: https://joy-connect.fly.dev
  • GitHub: https://github.com/tlkc888-Jenkins/Joy

License

MIT