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

agentrpc

v0.0.16

Published

Node SDK for AgentRPC

Readme

AgentRPC TypeScript SDK

A universal RPC layer for AI agents. Connect to any function, any language, any framework, in minutes.

Installation

npm install agentrpc

Registering Tools

Creating an AgentRPC Client

import { AgentRPC } from "agentrpc";

const rpc = new AgentRPC({
  // Get your API secret from https://app.agentrpc.com
  apiSecret: "YOUR_API_SECRET",
});

Registering a Tool

import { z } from "zod";

rpc.register({
  name: "hello",
  schema: z.object({ name: z.string() }),
  handler: async ({ name }) => `Hello ${name}`,
  // Optional
  config: {
    retryCountOnStall: 3,
    timeoutSeconds: 30,
  },
});

Starting the Listener

await rpc.listen();

Stopping the Listener

await rpc.unlisten();

MCP Server

The AgentRPC TypeScript SDK includes an MCP (Model Context Protocol) server that can be started using:

ANGENTRPC_API_SECRET=YOUR_API_SECRET npx agentrpc mcp

This will launch an MCP-compliant server, allowing external AI models and applications to interact with your registered tools.

For more details on MCP, visit Model Context Protocol.

Claude Desktop Usage:

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "agentrpc": {
      "command": "npx",
      "args": [
        "-y",
        "agentrpc",
        "mcp"
      ],
      "env": {
        "AGENTRPC_API_SECRET": "<YOUR_API_SECRET>"
      }
    }
  }
}

More Info

Cursor

Add the following to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "agentrpc": {
      "command": "npx",
      "args": ["-y", "agentrpc", "mcp"],
      "env": {
        "AGENTRPC_API_SECRET": "<YOUR_API_SECRET>"
      }
    }
  }
}

More Info

Zed

Zed

OpenAI Tools

AgentRPC provides integration with OpenAI's function calling capabilities, allowing you to expose your registered RPC functions as tools for OpenAI models to use.

rpc.OpenAI.getTools()

The getTools() method returns your registered AgentRPC functions formatted as OpenAI tools, ready to be passed to OpenAI's API.

// First register your functions with AgentRPC (Locally or on another machine)

// Then get the tools formatted for OpenAI
const tools = await rpc.OpenAI.getTools();

// Pass these tools to OpenAI
const chatCompletion = await openai.chat.completions.create({
  model: "gpt-4-1106-preview",
  messages: messages,
  tools: tools,
  tool_choice: "auto",
});

rpc.OpenAI.executeTool(toolCall)

The executeTool() method executes an OpenAI tool call against your registered AgentRPC functions.

// Process tool calls from OpenAI's response
if (responseMessage.tool_calls && responseMessage.tool_calls.length > 0) {
  for (const toolCall of responseMessage.tool_calls) {
    try {
      // Execute the tool and add result to messages
      messages.push({
        role: "tool",
        tool_call_id: toolCall.id,
        content: await rpc.OpenAI.executeTool(toolCall),
      });
    } catch (error) {
      console.error(`Error executing tool ${toolCall.function.name}:`, error);
      messages.push({
        role: "tool",
        tool_call_id: toolCall.id,
        content: `Error: ${error.message}`,
      });
    }
  }
}

API

new AgentRPC(options?)

Creates a new AgentRPC client.

Options:

| Option | Type | Default | Description | | ----------- | ------ | -------------------------- | -------------------- | | apiSecret | string | Required | The API secret key. | | endpoint | string | https://api.agentrpc.com | Custom API endpoint. | | machineId | string | Automatically generated | Custom machine ID. |

register({ name, schema, handler, config })

Registers a tool.

  • name: Unique tool identifier.
  • schema: Input validation schema (Zod or JSON schema).
  • handler: Async function to process input.
  • config: Optional tool configuration.

Tool Configuration Options:

| Option | Type | Default | Description | | ------------------- | ------ | ------- | --------------------------- | | retryCountOnStall | number | null | Number of retries on stall. | | timeoutSeconds | number | null | Request timeout in seconds. |

listen()

Starts listening for requests.

unlisten()

Stops all running listeners.