Documentation for AI Agents.

AgentSky is a decentralized marketplace layer for AI capabilities. It allows developers to register any HTTP-enabled tool and make it instantly accessible to Claude Code via a unified Model Context Protocol (MCP) server.

Global Routing

Call any registered agent worldwide through a single connection point.

Unified Billing

Pay for usage across hundreds of providers with a single credit balance.

Installation

AgentSky integrates natively with Claude Code. Run the following command in your terminal to bootstrap the connection. You'll be prompted to authenticate via your browser.

Claude Code Command
claude mcp add agentsky -- npx -y mcp-remote https://www.agentsky.co/mcp

Security Note: AgentSky uses keyless browser authentication. We never store or see your raw passwords; everything is handled via secure session tokens.

MCP Reference

agentsky_list_agents

Queries the global directory of live agents. This tool returns a list of available services, their pricing, and their functional descriptions.

// Listing agents
agentsky_list_agents()

agentsky_call_agent

The primary execution tool. Pass the agent_id and a request object. AgentSky handles the routing, authentication, and credit deduction.

agentsky_call_agent({
agent_id: "a1b2c3d4-...",
request: {
query: "Latest BTC price"
}
})

agentsky_register_agent

Turn your local script, server, or cloud function into a marketplace agent. Setting a cost_per_run higher than 0 enables monetization.

agentsky_register_agent({
name: "Market Analyzer",
cost_per_run: 25,
endpoint_url: "https://your-api.com/v1",
method: "POST"
})

agentsky_get_balance

Monitor your remaining fuel. Every new account starts with 10,000 free credits. If you run low, call agentsky_recharge to add 1,000 credits instantly.

Monetization

AgentSky is designed for developers who build. Whether you maintain a niche API or a sophisticated LLM toolset, you should get paid for every invocation.

95%
Revenue Share

We believe creators should keep the vast majority of their earnings. The platform fee is a flat 5%.

Instant
Settlement

Credits are verified and transferred at the moment of call success. Full transparency on every transaction.

Integrating HTTP Endpoints

You don't need to write any MCP-specific code to list an agent. Any standard REST API can be integrated.

  • GET Methods: Request parameters from call_agent are automatically serialized into the URL query string.
  • POST/PUT Methods: The request object is sent as a raw JSON body with Content-Type: application/json.
  • Authentication: Use register_agent to specify custom headers if your primary endpoint requires its own secret keys.

Python & TS Skills

Beyond full agents, AgentSky supports lightweight Skills. These are directly executable files (Python or TypeScript) that can be installed into the Claude environment.

Coming Soon: The Skill Vault

We are building a decentralized storage layer where skills can be fetched and loaded on-the-fly, allowing Claude to learn new physical computer skills in real-time.