NFTI AI

v1.0.0APIsstable

NFTI AI — NFTI your AI Agents & Virtual IP. Bridging intelligent agents, MCP protocols, and RWA to create a new era of digital sovereignty.

aimcpmcp-clientnftnfti
Share:
236
Stars
0
Downloads
0
Weekly
0/5

What is NFTI AI?

NFTI AI is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to nfti ai — nfti your ai agents & virtual ip. bridging intelligent agents, mcp protocols, and rwa to create a new era of digital sovereignty.

NFTI AI — NFTI your AI Agents & Virtual IP. Bridging intelligent agents, MCP protocols, and RWA to create a new era of digital sovereignty.

This server falls under the APIs category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • NFTI AI — NFTI your AI Agents & Virtual IP. Bridging intelli

Use Cases

Bridge AI agents with NFT and blockchain
Create digital sovereignty solutions
Enable RWA integration
Axarb

Maintainer

LicenseMIT
Languagetypescript
Versionv1.0.0
UpdatedMay 5, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx nftiai

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use NFTI AI

NFTI AI is a TypeScript-native standard library and MCP-compatible execution framework for building AI agents that interact with digital identity, NFT infrastructure, and Real World Assets (RWA). It provides composable client modules — such as IdentityClient and RWARegistryClient — that work as both TypeScript agent modules and as MCP-compatible AI tools callable by LLMs through adapters for the Vercel AI SDK, LangChain, LlamaIndex, and other frameworks. Developers building sovereign AI agents that need to query, transact, or coordinate on-chain and off-chain assets use NFTI to avoid writing low-level blockchain integration code.

Prerequisites

  • Node.js 18 or higher
  • npm or another JavaScript package manager
  • An MCP-capable client or AI SDK (Vercel AI SDK, LangChain, OpenAI SDK, etc.)
  • Familiarity with TypeScript and basic blockchain/NFT concepts
  • API credentials for any external services your chosen NFTI clients require (varies by client)
1

Install the NFTI core package

Install @nfti/core from npm into your project. This provides the base client modules for digital identity, RWA registries, and MCP gateways.

npm install @nfti/core
2

Install the AI SDK adapter for your framework

Install the adapter package that matches your AI framework. The Vercel AI SDK adapter (@nfti/ai-sdk) is the most commonly used. Adapters also exist for LangChain, LlamaIndex, Firebase Genkit, and the OpenAI SDK.

npm install @nfti/ai-sdk
3

Instantiate a client and wrap it as AI tools

Import the client you need, create an instance, and use createAISDKTools (or the equivalent for your framework) to expose its methods as LLM-callable tools.

import { IdentityClient } from '@nfti/core'
import { createAISDKTools } from '@nfti/ai-sdk'

const identity = new IdentityClient()
const tools = createAISDKTools(identity)
4

Add to your MCP server configuration

To expose NFTI tools via MCP to Claude Desktop or another MCP client, run the server via npx and register it in your MCP config.

{
  "mcpServers": {
    "nftiai": {
      "command": "npx",
      "args": ["-y", "nftiai"]
    }
  }
}
5

Compose multiple clients for richer agent capabilities

Combine the RWARegistryClient and MCPGatewayClient to give your agent tools for querying real-world assets and routing through MCP gateways simultaneously.

import { RWARegistryClient, MCPGatewayClient } from '@nfti/core'
import { createAISDKTools } from '@nfti/ai-sdk'

const rwa = new RWARegistryClient()
const mcp = new MCPGatewayClient()
const tools = createAISDKTools(rwa, mcp)

NFTI AI Examples

Claude Desktop MCP configuration

Minimal config block to register the NFTI AI server with Claude Desktop using npx.

{
  "mcpServers": {
    "nftiai": {
      "command": "npx",
      "args": ["-y", "nftiai"]
    }
  }
}

Prompts to try

Example prompts that exercise the identity, RWA, and MCP gateway tools exposed by the NFTI framework.

- "Who owns the NFT with ID nfti:0xabc123?"
- "Look up the digital identity profile for nfti.eth"
- "Register a new RWA asset entry for a tokenized real estate property"
- "List available MCP gateways for federated context routing"
- "Convert this OpenAPI spec into NFTI agent tools"

Troubleshooting NFTI AI

Module not found errors when importing @nfti/core

Ensure you have installed the package via npm install @nfti/core. If using TypeScript, confirm your tsconfig.json has moduleResolution set to 'node16' or 'bundler' to support the package's exports field.

createAISDKTools returns an empty tools object

Each NFTI client only exposes methods decorated as tools. Check the NFTI documentation at nfti.ai/tools for the exact methods each client provides. Ensure you are passing an instantiated client instance (not the class constructor) to createAISDKTools.

LLM does not call the NFTI tools when asked about NFTs or identities

Pass the tools object to your LLM call with toolChoice set to 'required' or 'auto', and ensure your prompt explicitly mentions the asset type or action. General questions may not trigger tool use without specific entity references.

Frequently Asked Questions about NFTI AI

What is NFTI AI?

NFTI AI is a Model Context Protocol (MCP) server that nfti ai — nfti your ai agents & virtual ip. bridging intelligent agents, mcp protocols, and rwa to create a new era of digital sovereignty. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install NFTI AI?

Follow the installation instructions on the NFTI AI GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with NFTI AI?

NFTI AI works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is NFTI AI free to use?

Yes, NFTI AI is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More APIs MCP Servers

Explore all apis servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "nftiai": { "command": "npx", "args": ["-y", "nftiai"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use NFTI AI?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides