Gblin MCP Server

AI agents' first sovereign vault: yield compounds, Crash Shield self-defends, JIT pays x402.

Remote serverstreamable-httpTypeScript

What is the Gblin MCP server?

Connect Gblin to Claude, Cursor or any other MCP client and it stops being a tab you switch to. AI agents' first sovereign vault: yield compounds, Crash Shield self-defends, JIT pays x402. The gblin mcp server is what makes that connection.

What the server does

📖 Full documentation and Quick Start: gblin.digital/agents

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • get_treasury_state — NAV in USD + basket composition + Crash Shield status
  • quote_safe_swap — Preview buy or sell with dynamic slippage buffer
  • swap_gblin_to_usdc_jitThe x402 magic: generate two-step GBLIN→USDC calldata (free)
  • invest_usdc_to_gblin — Convert USDC earnings into GBLIN treasury (MEV-safe) (free)
  • get_governance_state — Verify owner == 48h Timelock + pending asset proposals + min delay
  • share_skill_with_peer — Generate a portable skill seed to onboard a peer agent + embedded referral code
  • verify_risk_attestation — Verify a peer's Risk Attestation (perishable proof-of-diligence): integrity + EIP-712 signature + freshness + live drift (free)
  • get_market_risk_regime — $0.002 USDC
  • analyze_treasury_health — $0.003 USDC
  • find_keeper_bounty — $0.001 USDC

Credentials and setup notes

Configuration is passed through the environment: GBLIN_RPC_URL, X402_FACILITATOR_URL, YOUR_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 10 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Gblin.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Gblin's toolset — get_treasury_state, quote_safe_swap, swap_gblin_to_usdc_jit and 7 more — is a fair guide to whether it matches your workflow. It is maintained by gblinproject; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
get_treasury_stateNAV in USD + basket composition + Crash Shield status
quote_safe_swapPreview buy or sell with dynamic slippage buffer
swap_gblin_to_usdc_jit**The x402 magic**: generate two-step GBLIN→USDC calldata (free)
invest_usdc_to_gblinConvert USDC earnings into GBLIN treasury (MEV-safe) (free)
get_governance_stateVerify owner == 48h Timelock + pending asset proposals + min delay
share_skill_with_peerGenerate a portable skill seed to onboard a peer agent + embedded referral code
verify_risk_attestationVerify a peer's **Risk Attestation** (perishable proof-of-diligence): integrity + EIP-712 signature + freshness + live drift (free)
get_market_risk_regime$0.002 USDC
analyze_treasury_health$0.003 USDC
find_keeper_bounty$0.001 USDC

How to install the Gblin MCP server

{
  "mcpServers": {
    "gblin": {
      "command": "npx",
      "args": ["-y", "@gblin-protocol/mcp-server"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GBLIN_RPC_URLEndpoint or connection string the server talks to.Yes
X402_FACILITATOR_URLEndpoint or connection string the server talks to.Yes
YOUR_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Gblin to get treasury state.
  • Use Gblin to quote safe swap.
  • Use Gblin to swap gblin to usdc jit.

Frequently asked questions

It connects Gblin to MCP-compatible AI assistants such as Claude and Cursor, exposing 10 tools (get_treasury_state, quote_safe_swap, swap_gblin_to_usdc_jit, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gblin directly.