{
  "info": {
    "name": "NMKR Studio — mcp.ai",
    "description": "REST API for the NMKR Studio MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/nmkr_studio",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "nmkr_studio_get_exchange_rates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/exchange/rates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "exchange",
            "rates"
          ]
        },
        "description": "Return NMKR's current BTC, USD, EUR, and JPY conversion rates for a supported coin; omitting coin requests the provider's ADA default.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"coin\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_get_mint_coupon_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/mint/coupon/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "mint",
            "coupon",
            "balance"
          ]
        },
        "description": "Return the connected account's Cardano mint-coupon balance, effective time, and documented mint-purchase address.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_get_nft",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/nft",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "nft"
          ]
        },
        "description": "Return one NFT's details using either its NMKR NFT UID or the combination of project UID and NFT name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"nft_uid\": \"\",\n  \"nft_name\": \"\",\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_get_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project"
          ]
        },
        "description": "Return details and NFT state counts for an NMKR Studio project identified by its project UID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_get_project_pricelist",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/pricelist",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "pricelist"
          ]
        },
        "description": "Return the currently valid NFT prices configured for an NMKR Studio project, optionally including all prices exposed by NMKR.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_uid\": \"\",\n  \"return_all_prices\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_get_project_sale_conditions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/sale/conditions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "sale",
            "conditions"
          ]
        },
        "description": "Return the active sale conditions configured for an NMKR Studio project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_get_token_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/token/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "token",
            "metadata"
          ]
        },
        "description": "Return metadata for a blockchain token identified by policy ID and hex-encoded token name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"policy_id\": \"\",\n  \"token_name_hex\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_list_payout_wallets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/payout/wallets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "payout",
            "wallets"
          ]
        },
        "description": "Return payout wallets already configured on the connected NMKR Studio account; this tool does not add, validate, or expose wallet secrets.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_list_project_nfts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/nfts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "nfts"
          ]
        },
        "description": "Return one page of NFTs in a project filtered by lifecycle state, with a continuation cursor for additional pages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"state\": \"\",\n  \"page_size\": 0,\n  \"sort_order\": \"\",\n  \"next_cursor\": \"\",\n  \"project_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_list_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "projects"
          ]
        },
        "description": "Return one page of projects owned by the connected NMKR Studio account, including identifiers needed by project and NFT tools. Results are cached by NMKR for 10 seconds.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nmkr_studio_validate_nft_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/validate/nft/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "validate",
            "nft",
            "metadata"
          ]
        },
        "description": "Check whether the metadata already stored for an NFT is valid; this read-only form does not submit or update metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"nft_uid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}