Skip to content

Connect over MCP

This page gives you the Monaiq MCP endpoint, explains how signing in works, and summarises what the tools do.

https://api.monaiq.com/mcp

The URL is the entire setup. Point your MCP client at it and you are done: there is no API key to paste, no session key, and no configuration file to fill in beyond the address itself. None of the tools take a credential as a parameter either.

Authentication is MCP-spec OAuth 2.1, and your client drives all of it:

  1. The first request answers 401 with a WWW-Authenticate header pointing at https://api.monaiq.com/.well-known/oauth-protected-resource.
  2. Your client reads that document and starts the OAuth flow it describes.
  3. You sign in with a one-time passcode sent to your email address.

From then on the client holds the token and you work in tools. The code that arrives by email is the only thing you have to supply by hand.

getting_started orients you: it explains the business domain and how the rest of the tools fit together.

profile views and manages your seller profile, retrieves your credentials, and reads and accepts terms. rotate_api_key regenerates your API key, and the old key stops authenticating immediately.

product, product_feature, offering and feature_offering are the catalog: creating, reading, updating and deleting the product a license unlocks, the features inside it, the offering a customer buys, and the features attached to that offering.

implement_base, implement_product_feature and implement_purchase_flow return guidance and snippets for the integration itself: base wiring, a feature check, and an embedded purchase flow. They do not edit files. get_platform_manifest returns the full JSON manifest for a supported platform, provision_api_key_config gives the exact commands and file edits to plumb your API key into a project, fetch_step_resources retrieves the resources a step refers to, and monaiq_journal keeps an implementation journal across longer work.

MCP tools reference lists all of them in one table.

Claude Code users can install the Monaiq plugin instead of configuring the endpoint by hand. It is two commands, and it packages the same tools: see AI-assisted setup.

The tools set up your catalog and hand you the integration guidance; the code still runs against the SDKs. See the .NET quickstart or the Node and React quickstart, and Credentials and keys for the key that code will need.