1. Conduid
  2. Developer Tools
  3. AgentRPC
MCP server · Developer Tools

AgentRPC

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

Unclaimed Apache-2.0 last commit 9 months ago devtools
72Good

Scored 3 hours ago · breakdown

About AgentRPC

AgentRPC is an MCP server published by agentrpc in the Developer Tools category: a universal RPC layer for AI agents. Connect to any function, any language, any framework, in minutes. It has been installed 0 times through Conduid.

The repository has 127 stars and 24 forks, with the last commit 9 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx agentrpc

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about AgentRPC

Powered by Claude · Grounded in docs

I know everything about AgentRPC. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

sdk-python/v0.0.8sdk-python/v0.0.8
sdk-python/v0.0.7sdk-python/v0.0.7
sdk-node/v0.0.16sdk-node/v0.0.16
sdk-node/v0.0.14sdk-node/v0.0.14
sdk-node/v0.0.13sdk-node/v0.0.13

README

AgentRPC

NPM Version GitHub go.mod Go version PyPI - Python Version License

Universal RPC layer for AI agents across network boundaries and languages

Overview

AgentRPC allows you to connect to any function, in any language, across network boundaries. It's ideal when you have services deployed in:

  • Private VPCs
  • Kubernetes clusters
  • Multiple cloud environments

AgentRPC wraps your functions in a universal RPC interface, connecting them to a hosted RPC server accessible through open standards:

  • Model Context Protocol (MCP)
  • OpenAI-compatible tool definitions (OpenAI, Anthropic, LiteLLM, OpenRouter, etc.)

How It Works

  1. Registration: Use our SDK to register functions and APIs in any language
  2. Management: The AgentRPC platform (api.agentrpc.com) registers the function and monitors its health
  3. Access: Receive OpenAPI SDK compatible tool definitions and a hosted MCP server for connecting to compatible agents

Key Features

Feature Description
Multi-language Support Connect to tools in TypeScript, Go, Python and .NET (coming soon)
Private Network Support Register functions in private VPCs with no open ports required
Long-running Functions Long polling SDKs allow function calls beyond HTTP timeout limits
Full Observability Comprehensive tracing, metrics, and events for complete visibility
Automatic Failover Intelligent health tracking with automatic failover and retries
Framework Compatibility Out-of-the-box support for MCP and OpenAI SDK compatible agents

Getting Started

Quick Start

Follow the quick start example on our docs site.

Examples

Explore working examples in the examples directory.

MCP Server

The AgentRPC TypeScript SDK includes an optional MCP (Model Context Protocol) server.

ANGENTRPC_API_SECRET=YOUR_API_SECRET npx agentrpc mcp

This launches an MCP-compliant server for external AI models to interact with your registered tools.

Claude Desktop Integration

Add to your claude_desktop_config.json:

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

More Info

Cursor Integration

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

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

More Info

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

This repository contains all the open-source components and SDKs for AgentRPC.

README mirrored from the source repository 3 hours ago. The original is authoritative.

Questions

About AgentRPC

How do I install AgentRPC?

Run npx agentrpc, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is AgentRPC safe to use with an AI agent?

Its trust score is 72 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is AgentRPC still maintained?

The last commit was 9 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.