🌐Mintbase Plugins

This is still work-in-progress.

We've implemented support for plugins in our AI wallet. Plugins enable connecting tools and AI agents specifically designed for language models.

Ref Finance Tool Example

The Ref Finance Tool is a powerful example of a plugin designed to work seamlessly with our AI wallet. This tool allows users to directly interact with Decentralized Finance (DeFi) services from within the wallet interface.

With the Ref Finance Tool, users can perform a swaps all without leaving the AI wallet environment. Find the source code here.

How to add your plugin to Mintbase Registry?

  1. Follow the OpenAPI Specification. See this example.

  2. Deploy your service with a cloud provider like Vercel, GCP, AWS, or any other that you're comfortable with.

  3. Make sure that /.well-known/ai-plugin.json is accessible (for example https://your-service/.well-known/ai-plugin.json)

  4. Talk to our Mintbase AI Smart Actions and ask to validate and register your plugin followed by your URL.

OpenAPI Mintbase Extension

We have created an extension for the OpenAPI specification that allows you to include additional metadata.

"x-mb": {
  "account-id": "mintbase.near",
  "assistant": {
    "model": "",
    "instructions": "",
    "temperature": 0.5
  }
}

Last updated