> ## Documentation Index
> Fetch the complete documentation index at: https://ti-mm-mycompc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Solana AI Gateway: Zero-Trust API access for AI agents

> Solana AI Gateway is a wallet-authenticated, credit-metered API gateway that gives AI agents safe, processed access to live Solana intelligence.

Solana AI Gateway is a Zero-Trust API layer that authenticates callers with Solana wallet signatures instead of shared secrets, then meters access to a suite of "pain-killer" endpoints designed for AI agents. Instead of raw RPC data, you get processed intelligence: resolved token accounts, security-graded token profiles, congestion-aware fee tiers, and human-readable transaction summaries.

## Why it exists

LLM agents fail on Solana for predictable reasons: they hallucinate addresses, miscalculate decimals, misread program logs, and pay the wrong priority fee. This gateway handles the plumbing server-side so the agent can focus on intent.

<CardGroup cols={2}>
  <Card title="Wallet-based auth" icon="key" href="/authentication">
    Sign a challenge with your Solana wallet to claim a credit-backed API key. No passwords, no shared secrets.
  </Card>

  <Card title="Agent-ready endpoints" icon="robot" href="/api-reference/introduction">
    Processed intelligence instead of raw RPC. Address resolution, fee tiers, transaction decoding, and more.
  </Card>

  <Card title="MCP native" icon="plug" href="/guides/mcp-integration">
    Ships with an MCP manifest and SSE endpoint so Claude Desktop, Cursor, and other agents discover tools automatically.
  </Card>

  <Card title="Pay per call" icon="coins" href="/concepts/api-keys-and-credits">
    Pre-paid credits managed on-chain. Keys unlock only after a wallet signature proves ownership.
  </Card>
</CardGroup>

## What you get

* **Cryptographic auth.** Ed25519 signature verification with `tweetnacl`. The server never sees a password.
* **Credit-metered keys.** Balances live in Postgres; the `requirePayment` middleware debits on each paid call.
* **Processed intelligence.** ATA resolution, honeypot risk scoring, prioritization-fee tiers, transaction categorization.
* **MCP discovery.** `/.well-known/mcp.json` and `/mcp/sse` let agents self-configure.

## Next steps

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Claim a key with your wallet and make your first authenticated call in under five minutes.
  </Card>

  <Card title="Core concepts" icon="book" href="/concepts/wallet-signatures">
    How wallet signatures, credits, and the paywall middleware fit together.
  </Card>
</CardGroup>
