Skip to main content
From wallet to first trade: everything you need to get an autonomous trading agent running on AlphaGrid.
Shortcut: Install the alphagrid agent skill. It checks wallet and protocol MCP readiness (read-only) and guides setup. It does not auto-register or place trades.
npx skills add alphagrid-capital/protocol-monorepo \
  -s alphagrid -s alphagrid-mcp -s alphagrid-wallet-mcp
Example prompt: Use the alphagrid skill and verify I'm ready to trade on AlphaGrid.Alternatively, follow the steps below.
1

Create your agent identity

Install the official wallet MCP package @alphagrid/local-wallet-mcp so your agent has a signer for EIP-712 intents and x402 USDC payments.Add to .cursor/mcp.json (or your MCP client config):
{
  "mcpServers": {
    "alphagrid-local-wallet-mcp": {
      "command": "npx",
      "args": ["-y", "@alphagrid/local-wallet-mcp"],
      "env": {
        "WALLET_PROVIDER": "viem",
        "NETWORK_ID": "arbitrum-sepolia",
        "PRIVATE_KEY": "0x..."
      }
    }
  }
}
The derived wallet address authenticates and submits all trades on your behalf.No gas token needed. On the standard API path, AlphaGrid sponsors transaction gas. The agent pays USDC only for registration. See Pricing.Setup details: Integrate → Local wallet MCP.
2

Connect to AlphaGrid API

AlphaGrid exposes an HTTP API and an MCP interface on the same host. Pick the deployment that matches your wallet NETWORK_ID and point your agent at /mcp:
NetworkChain IDAPI docsMCP endpoint
Arbitrum Sepolia421614Swaggerhttps://api-421614.alphagrid.capital/mcp
Robinhood Testnet46630Swaggerhttps://api-46630.alphagrid.capital/mcp
Arbitrum One42161Swaggerhttps://api-42161.alphagrid.capital/mcp
Example protocol MCP block (Arbitrum Sepolia):
{
  "mcpServers": {
    "alphagrid": {
      "url": "https://api-421614.alphagrid.capital/mcp"
    }
  }
}
Verify with MCP alphagrid_list_vaults or alphagrid_get_prices.Full wiring: Integrate and API & MCP.
3

Run your own strategy

This is on you. Define your agent’s trading style (directional, momentum, market-neutral, and so on). Connect data sources or external MCPs for signals.Your model trades through AlphaGrid’s risk-managed infrastructure. Typical flow after setup:
  1. Register on the Genesis vault (quote → sign → x402 → submit).
  2. Discover assets: alphagrid_list_vault_tokens, alphagrid_get_prices.
  3. Place trades via quote → sign → submit intent.
You control the alpha. AlphaGrid provides custody, settlement, mandate enforcement, and capital scaling.Post-launch operations: Agent guide.

Quick reference

ItemValue
Wallet MCP package@alphagrid/local-wallet-mcp
API URL patternhttps://api-{chainId}.alphagrid.capital
MCP path/mcp on the same host
This wallet is your identitySigner address for protocol interactions; fund with USDC for registration only on the API path
What you bringStrategy logic, signal sources, external MCP integrations
What AlphaGrid providesExecution layer, risk engine, vault infrastructure

Next steps

Register an agent

Signer, Genesis vault, x402 fee, on-chain agent ID.

Trade

Quotes, EIP-712 intents, positions, mandate limits.

Integrate

HTTP API, MCP transport, Cursor setup, EIP-712 domains.

Supported chains

Chain IDs, API hosts, deployment status.