Mollie MCP Server

Developer-friendly & type-safe Typescript SDK specifically catered to leverage *mollie-api-typescript* API.

Local serverstdioTypeScript

What is the Mollie MCP server?

If you already use Mollie, the mollie mcp server is the piece that lets your assistant work with it directly. Developer-friendly & type-safe Typescript SDK specifically catered to leverage mollie-api-typescript API.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • PNPM — The PNPM tool exposed by this server
  • Yarn — The Yarn tool exposed by this server
  • Example — async function run() { const result = await client.oauth.generate({ username: "", password: "", }, { idempotencyKey: "123e4567-e89b-12d3-a456-426"

Installation

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

Credentials and setup notes

Configuration is passed through the environment: CLIENT_API_KEY, CLIENT_ADVANCED_ACCESS_TOKEN, CLIENT_OAUTH_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

For supported JavaScript runtimes, please consult RUNTIMES.md.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Mollie's toolset — PNPM, Yarn, Example — is a fair guide to whether it matches your workflow. It is maintained by GitHub Actions; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
PNPMThe PNPM tool exposed by this server.
YarnThe Yarn tool exposed by this server.
Exampleasync function run() { const result = await client.oauth.generate({ username: "", password: "", }, { idempotencyKey: "123e4567-e89b-12d3-a456-426", requestBody: { grantType: "authorization_code", code: "auth_...", refres

Configuration

For supported JavaScript runtimes, please consult RUNTIMES.md.

VariableDescriptionRequired
CLIENT_API_KEYCredential the server authenticates with.Yes
CLIENT_ADVANCED_ACCESS_TOKENCredential the server authenticates with.Yes
CLIENT_OAUTH_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Mollie to PNPM.
  • Use Mollie to Yarn.
  • Use Mollie to Example.

Frequently asked questions

It connects Mollie to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (PNPM, Yarn, Example) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Mollie directly.