ClaudeChatGPTPerplexityGeminiMicrosoft CopilotRaycastMeta AIGrokZ.aiQwenKimi
DeepSeekMistralCursorVS CodeWindsurfJetBrainsClineLovableVercel AI SDKLangChain

Use Infura with your AI.

Connect your account once and let the AI you already use work with it, without building another integration. Access Ethereum blockchain data via Infura. query blocks, check balances, estimate gas, and interact with smart contracts directly from any AI agent.

Included with plan

Ask AI about this Connector

Developed, maintained, and hosted by Vinkius.

MCP VERIFIED · PRODUCTION READY · VINKIUS GUARANTEED

Waiting for input…

Works with modern AI clients that support MCP, including ChatGPT, Claude, Cursor, and more.

ChatGPTClaudeCursorPerplexityGeminiMicrosoft CopilotRaycastMeta AI

Complete set · 20 capabilities

The complete Infura capability set.

These are the exact actions your AI can choose when you ask it to work with Infura.

Capability set01 / 05

01-04

4 capabilities in this set.

Part of 20 available through Infura.

  1. 01

    Eth gasPrice

    Get current gas price

  2. 02

    Eth getBalance

    Get the balance of an account

  3. 03

    Eth getBlockByHash

    Get information about a block by hash

  4. 04

    Eth blockNumber

    Get the number of the most recent block

Capability set02 / 05

05-08

4 capabilities in this set.

Part of 20 available through Infura.

  1. 05

    Eth getTransactionReceipt

    Note: Receipt is not available for pending transactions. Get the receipt of a transaction by hash

  2. 06

    Eth getBlockTransactionCountByHash

    Get transaction count in a block by hash

  3. 07

    Eth getTransactionByHash

    Get transaction information by hash

  4. 08

    Eth newFilter

    Create a new filter for polling

Capability set03 / 05

09-12

4 capabilities in this set.

Part of 20 available through Infura.

  1. 09

    Eth call

    Execute a new message call immediately

  2. 10

    Eth chainId

    Get the chain ID

  3. 11

    Eth estimateGas

    Estimate gas needed for a transaction

  4. 12

    Eth feeHistory

    Get transaction fee history

Capability set04 / 05

13-16

4 capabilities in this set.

Part of 20 available through Infura.

  1. 13

    Eth getBlockByNumber

    Get information about a block by number

  2. 14

    Eth getBlockTransactionCountByNumber

    Get transaction count in a block by number

  3. 15

    Eth getCode

    Get code at a given address

  4. 16

    Eth getFilterChanges

    Get changes for a filter

Capability set05 / 05

17-20

4 capabilities in this set.

Part of 20 available through Infura.

  1. 17

    Eth getLogs

    Get logs matching a filter

  2. 18

    Eth getTransactionCount

    Get the number of transactions sent from an address (nonce)

  3. 19

    Eth sendRawTransaction

    Send a signed transaction

  4. 20

    Get suggested gas fees

    Get suggested gas fees (EIP-1559)

Observed, not estimated

937ms average. Fast in production.

Infura is checked daily against the live service.

Daily averagePeak 1423ms
Aug 28Today
Fastest day
851ms
Slowest day
1423ms
14-day trend
Improving-13%

Connect your client

One URL. Every client.

Activate the Connector, copy your link, and paste it into the client you already use. 20 capabilities arrive ready to run.

Preview access · not provider authentication

The vk_preview_* token belongs to Vinkius preview infrastructure. It lets Claude discover and display the capabilities of Infura, so you can see the experience inside your AI.

It does not authenticate your account with Infura. Actions requiring credentials or live account data may not run until you activate the Connector and authorize the service.

Infura Connector

You're all set. Choose your MCP client and follow the setup instructions.

Connector linkhttps://edge.vinkius.com/vk_preview_zcNhs7HfyaJLv7DnNOLkkLSXrkYErjMJsAu5BLC2/mcp

Claude Desktop

Follow the steps below to connect in seconds.

  1. 1In Claude Desktop, open Settings → Connectors.
  2. 2Click “Add custom connector” and paste the connector link above as the remote MCP server URL.
  3. 3Click Add and start a new chat — Infura capabilities are ready to use.
Configuration · claude_desktop_config.jsonCopy
{
  "mcpServers": {
    "infura-ethereum-node-rpc-provider-mcp": {
      "url": "https://edge.vinkius.com/vk_preview_zcNhs7HfyaJLv7DnNOLkkLSXrkYErjMJsAu5BLC2/mcp"
    }
  }
}
  • Claude
  • ChatGPT
  • Cursor
  • VS Code
  • Windsurf
  • Claude Code
  • JetBrains
  • Cline

Step-by-step instructions for each client are in the guide. How to connect

FAQ

Questions Infura owners ask.

  • 01

    Can I check the balance of any Ethereum wallet address?

    Yes. Use the eth_getBalance capability with the target address. You can also specify the block parameter (e.g., 'latest') to get the most up-to-date balance in wei.

  • 02

    How do I find out the current gas price for a transaction?

    You can use the eth_gasPrice capability to get the current price in wei, or use getSuggestedGasFees for a more detailed recommendation on priority and base fees.

  • 03

    Can I inspect the details of a specific block using its number?

    Absolutely. Use the eth_getBlockByNumber capability. Provide the hex-encoded block number or a tag like 'latest', and set full_tx to true if you want to see all transaction objects within that block.