Ipfs Toolkit MCP Server

1. Navigate to the Accounts page by tapping on the wallet icon in the upper right corner of the App home screen. Access the API Key Manager for the

Local serverstdio

What is the Ipfs Toolkit MCP server?

Ipfs Toolkit MCP server exists for a simple reason — assistants are far more useful when they can act on Ipfs Toolkit directly instead of describing what you should do. 1. Navigate to the Accounts page by tapping on the wallet icon in the upper right corner of the App home screen. Access the API Key Manager for the created or imported Ethereum Account by tapping “Manage API Key” on the Accounts page.

Setting it up

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.

What the assistant can call

Once Ipfs Toolkit is connected, these are the calls the assistant has available:

  • search_string — string
  • pinned_state — integer
  • encrypted_state — integer
  • content_type — string
  • cid — string
  • file — multipart form body
  • nicknameOnIPFS — query
  • doEncryptOnIPFS — query
  • base64_data — string

Configuration and credentials

You will need one environment variable: YOUR_API_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 9 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Ipfs Toolkit.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the ipfs toolkit mcp server does with a few real requests.

Choosing this one

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. Ipfs Toolkit's toolset — search_string, pinned_state, encrypted_state and 6 more — is a fair guide to whether it matches your workflow. It is maintained by teckel-mcp-servers; 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
search_stringstring
pinned_stateinteger
encrypted_stateinteger
content_typestring
cidstring
filemultipart form body
nicknameOnIPFSquery
doEncryptOnIPFSquery
base64_datastring

How to install the Ipfs Toolkit MCP server

{
 "mcpServers": {    
    "teckel-ipfs-toolkit": {
      "url": "https://mcp-servers.bh.tkllabs.io:9780/ipfs-mcp",
      "headers": {
        "Authorization": "Bearer d1e12345-c234-45a6-9b76-1234567891ff"
      }
    }   
  }
}

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

Configuration

VariableDescriptionRequired
YOUR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Ipfs Toolkit to search string.
  • Use Ipfs Toolkit to pinned state.
  • Use Ipfs Toolkit to encrypted state.

Frequently asked questions

It connects Ipfs Toolkit to MCP-compatible AI assistants such as Claude and Cursor, exposing 9 tools (search_string, pinned_state, encrypted_state, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ipfs Toolkit directly.