NFTI AI
NFTI AI — NFTI your AI Agents & Virtual IP. Bridging intelligent agents, MCP protocols, and RWA to create a new era of digital sovereignty.
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
Maintainer
Works with
Installation
Manual Installation
npx nftiaiConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
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)
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/coreInstall 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-sdkInstantiate 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)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"]
}
}
}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.
NFTI AI Alternatives — Similar APIs Servers
Looking for alternatives to NFTI AI? Here are other popular apis servers you can use with Claude, Cursor, and VS Code.
Kong
★ 43.4k🦍 The API and AI Gateway
API Mega List
★ 5.4kThis GitHub repo is a powerhouse collection of APIs you can start using immediately to build everything from simple automations to full-scale applications. One of the most valuable API lists on GitHub—period. 💪
Fetch
★ 5.4kFetch web content and convert to markdown for AI consumption
Fusio
★ 2.1kSelf-Hosted API Management for Builders
Korean Law
★ 1.8k국가법령정보MCP v4.0 | 법제처 41개 API → 17개 MCP 도구. 법령·판례·조례 검색 + LLM 환각 방지 인용검증 + 조문 영향 그래프(impact_map) + 시점 비교 자동 diff(time_travel) + 시민 5단계 실행 가이드(action_plan) | 41 Korean legal APIs → 17 MCP tools
RuleGo
★ 1.5k⛓️RuleGo is a lightweight, high-performance, embedded, next-generation component orchestration rule engine framework for Go.
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.
Set Up NFTI AI in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
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.