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

@valeo-ace/mcp

v0.1.0

Published

MCP server for Agent Credit Engine — AI agents can borrow USDC autonomously

Readme

@valeo-ace/mcp

MCP server that lets AI agents borrow USDC through Agent Credit Engine.

Setup

Works with any MCP-compatible client: Claude Code, Cursor, Windsurf, Cline, LangChain, CrewAI, etc.

Claude Code / Cursor

Add to your MCP config (.cursor/mcp.json or Claude's mcp_servers.json):

{
  "mcpServers": {
    "ace": {
      "command": "npx",
      "args": ["@valeo-ace/mcp"]
    }
  }
}

Restart your client. The ACE tools will appear automatically.

Manual / npx

npx @valeo-ace/mcp

Tools

| Tool | Description | |------|-------------| | ace_register | Register for an ACE API key. Call this first. | | ace_create_agent | Create an AI agent identity on ACE. | | ace_connect_wallet | Connect a Solana wallet to your agent. | | ace_request_credit | Request USDC credit. Funds sent to your wallet on Solana. | | ace_check_loan | Check loan status and disbursement. | | ace_check_balance | Check risk score, credit profile, and available credit. | | ace_get_credit_line | Get credit line limits and usage. |

Example Conversation

User: I need my agent to borrow 5 USDC to pay for a DataProvider API call.

Agent: I'll set up ACE credit for you.

[calls ace_register with email and name]
→ "Registered successfully. API key saved."

[calls ace_create_agent with name "Trading Bot Alpha"]
→ "Agent created: Trading Bot Alpha (ID: cmm...)."

[calls ace_connect_wallet with your Solana address]
→ "Wallet connected. ACE will send USDC here."

[calls ace_request_credit with amount "5.00" and purpose "DataProvider API call"]
→ "APPROVED: 5.00 USDC credit. Loan ID: cmm... Fee: 0.15 USDC (3%).
   Total due: 5.15 USDC within 24 hours.
   USDC is being sent to your wallet now."

Done! When revenue arrives in your wallet, ACE auto-repays the loan.

Environment Variables

The server works with zero configuration. State is persisted in ~/.ace/config.json.

For advanced use, these env vars skip the corresponding setup tools:

| Variable | Description | |----------|-------------| | ACE_API_KEY | Use this API key instead of registering | | ACE_BASE_URL | Override API URL (default: https://api.agentcreditengine.com) | | ACE_AGENT_ID | Use this agent ID instead of creating one |

Example with env vars:

{
  "mcpServers": {
    "ace": {
      "command": "npx",
      "args": ["@valeo-ace/mcp"],
      "env": {
        "ACE_API_KEY": "vak_your_key_here",
        "ACE_AGENT_ID": "cmm_your_agent_id"
      }
    }
  }
}

How It Works

  1. Register — creates an ACE account and stores the API key locally
  2. Create Agent — registers your AI agent identity with ACE
  3. Connect Wallet — links a Solana wallet for USDC disbursement and revenue monitoring
  4. Request Credit — borrows USDC, which is sent on-chain to your wallet
  5. Auto-Repay — when revenue arrives, ACE detects it and repays the loan automatically

Full Documentation

https://docs.agentcreditengine.com

License

MIT