Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.nevermined.app/llms.txt

Use this file to discover all available pages before exploring further.

Getting Started

The Nevermined OpenClaw plugin exposes AI agent payment operations as gateway tools callable from any OpenClaw channel — Telegram, Discord, WhatsApp, and more.

Prerequisites

Installation

Install the plugin from your OpenClaw gateway:
openclaw plugin install @nevermined-io/openclaw-plugin

Authentication

To interact with the Nevermined API, you need an API key. Open nevermined.app, sign in, then go to Settings > Global NVM API Keys and click + New API Key.
Use the /nvm_login command from any connected chat channel:
/nvm_login
This opens a browser window where you authenticate with Nevermined. The API key is captured automatically and stored in your gateway config. To target the live environment:
/nvm_login live
To use a specific API key:
/nvm_login sandbox:eyJhbG...

Option B: Manual configuration

Add your API key directly to openclaw.json:
{
  "plugins": {
    "entries": {
      "openclaw-plugin": {
        "enabled": true,
        "config": {
          "nvmApiKey": "sandbox:eyJhbG...",
          "environment": "sandbox"
        }
      }
    }
  }
}

Quick Test

After authenticating, verify the plugin is working:
  1. Check your balance — from any chat channel, the agent can ask Example prompt: “How many credits do I have left on my plan?” to verify connectivity.
  2. List plans — you can ask Example prompt: Show me all my payment plans” to see available payment plans.

Fiat Payments

The plugin also supports fiat payments via credit card delegation. Enroll a card at nevermined.app, then use paymentType: fiat with any token or query tool. See the guide for details.

Next Steps

  • Setup — full configuration reference
  • Commands — all available tools and slash commands