NMKR Studio MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with NMKR Studio MCP or direct API to manage NFT projects, create assets, mint tokens, and track sales through natural language.

NMKR Studio logoNMKR Studio
Api Key

NMKR Studio is an NFT platform and API suite for Cardano project creation, asset management, minting, sales, and wallets. Use it to run NFT drops and Cardano asset workflows without building the whole blockchain backend yourself.

11 Tools

Try NMKR Studio now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
NMKR Studio
Try asking
TOOLS

Supported Tools

Every NMKR Studio action and event your agent gets out of the box.

Get Exchange Rates

Return NMKR's current BTC, USD, EUR, and JPY conversion rates for a supported coin; omitting coin requests the provider's ADA default.

Get Mint Coupon Balance

Return the connected account's Cardano mint-coupon balance, effective time, and documented mint-purchase address.

Get NFT

Return one NFT's details using either its NMKR NFT UID or the combination of project UID and NFT name.

Get Project

Return details and NFT state counts for an NMKR Studio project identified by its project UID.

Get Project Pricelist

Return the currently valid NFT prices configured for an NMKR Studio project, optionally including all prices exposed by NMKR.

Get Project Sale Conditions

Return the active sale conditions configured for an NMKR Studio project.

Get Token Metadata

Return metadata for a blockchain token identified by policy ID and hex-encoded token name.

List Payout Wallets

Return payout wallets already configured on the connected NMKR Studio account; this tool does not add, validate, or expose wallet secrets.

List Project NFTs

Return one page of NFTs in a project filtered by lifecycle state, with a continuation cursor for additional pages.

List Projects

Return one page of projects owned by the connected NMKR Studio account, including identifiers needed by project and NFT tools.

Validate NFT Metadata

Check whether the metadata already stored for an NFT is valid; this read-only form does not submit or update metadata.

SETUP GUIDE

Connect NMKR Studio MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK for Python or TypeScript
2

Initialize Client and Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });
const session = await composio.create('your-user-id');
console.log(`Tool Router session created: ${session.mcp.url}`);
Import and initialize the Composio client, then create a Tool Router session for NMKR Studio
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: session.mcp.url,
    headers: {
      'x-api-key': 'your-composio-api-key',
    },
  },
});

const tools = await client.tools();
const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{
    role: 'user',
    content: 'Get recent sales for my NMKR Studio NFT project'
  }],
  maxSteps: 5,
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent (Anthropic Claude or Mastra)
SETUP GUIDE

Connect NMKR Studio API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute NMKR Studio Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'List all NFT projects in NMKR Studio'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute NMKR Studio actions with your Agent

Why Use Composio?

AI Native NMKR Studio Integration

  • Supports both NMKR Studio MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable NFT project, asset, minting, and sales workflows
  • Rich coverage for reading, writing, and querying your NMKR Studio data

Managed Auth

  • Secure handling for NMKR Studio API keys, so you don't have to hard-code secrets
  • Central place to manage, scope, and revoke NMKR Studio access
  • Per user and per environment credentials for safer NFT project operations

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Clean tool descriptions help agents understand NFT projects, assets, minting states, sales, and wallets
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access NMKR Studio
  • Scoped, least privilege access to NMKR Studio resources
  • Full audit trail of agent actions to support review and compliance for NFT operations
FAQ

Frequently asked questions

Yes, NMKR Studio requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you. Use auth_configs.create() to define the NMKR Studio auth config, connected_accounts.link() to link each user's API key, and mcp.create() when you want to expose those tools through MCP.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with NMKR Studio.It takes 30 seconds.

Managed auth, hosted MCP servers, and every NMKR Studio tool your agent needs.Free to start.

Start building