Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
factuarea-mcp logo

factuarea-mcp

factuarea

productivityClaude Codeby Factuarea

Summary

Connects Claude Code to the Factuarea MCP server: invoicing, quotes, clients, suppliers, products, VeriFactu and webhooks for Spanish businesses, exposed as tools over OAuth or an API key.

Install to Claude Code

/plugin install factuarea-mcp@factuarea

Run in Claude Code. Add the marketplace first with /plugin marketplace add factuarea/claude-plugins if you haven't already.

README.md

Factuarea — Claude Code plugins

Official Claude Code plugin marketplace for

Factuarea — the multi-tenant invoicing SaaS for Spanish businesses (invoicing, quotes, clients, suppliers, products, VeriFactu and webhooks).

Two plugins, two jobs

| Plugin | For | What it does | | --- | --- | --- | | factuarea-mcp | Running your business | Connects Claude Code to the Factuarea MCP server (https://mcp.factuarea.com) so Claude can call Factuarea tools directly — search/create/send invoices, manage clients, check VeriFactu, configure webhooks. Authenticate via OAuth or an API-key header. One skill, on using those tools well | | factuarea-api | Building the integration | Five developer skills for the code you write in your own repository: where to start, the official TypeScript and PHP SDKs, webhook receivers, auditing an existing integration, and realigning it after a contract or SDK change. Declares no MCP server |

They are complementary, not alternatives.

  • Install factuarea-mcp when you want Claude to act on a real account.

It brings the MCP server, so it costs an OAuth consent (or an API key) and loads the tool surface into the session.

  • Install factuarea-api when you want Claude to write integration code.

It is deliberately lightweight — no server declaration, no OAuth, nothing loaded at startup. None of its five skills needs the MCP server connected; they work from the official SDKs, the live OpenAPI spec and the published docs.

  • Install both if you do both: write the integration with one, and inspect

the account it writes to with the other.

Install

In Claude Code, register the catalog once:

/plugin marketplace add factuarea/claude-plugins

Then install whichever you need:

/plugin install factuarea-mcp@factuarea     # operate the account
/plugin install factuarea-api@factuarea     # build the integration

To update later, run /plugin marketplace update factuarea.

factuarea-mcp — operate the account

The plugin declares the server without an auth header, so the recommended path is OAuth:

1. Run /mcp, pick factuarea, choose Authenticate. 2. Approve in the browser — Dynamic Client Registration + PKCE are automatic. On the consent screen you select the company and the environment (live or test) and the scopes to grant.

Prefer your own API key? Connect with a static header instead:

claude mcp add --transport http factuarea https://mcp.factuarea.com \
  --header "Authorization: Bearer fact_live_xxxxxxxxxxxxxxxxxxxxxxxx"

Use a fact_test_ key for the isolated sandbox (external effects off). The canonical endpoint is the root https://mcp.factuarea.com; the older

https://mcp.factuarea.com/mcp keeps working as a compatibility alias.

Its skill covers:

  • Connecting via OAuth (consent with company + environment selection) or an

API-key header.

  • Channel policy — an API key reaches the whole catalog; OAuth uses a

curated subset, never granting verifactu:write or the GDPR signature-forget operation to third-party apps. Live counts per domain: MCP tools.

  • Tool domains and their scopes, plus how plan/module and feature flags

further narrow what's listed.

  • Identity — opaque id (UUID v7), foreign keys as *_id.
  • Cursor pagination{ data, has_more, next_cursor }, no page numbers.
  • Errorsinsufficient_scope, addon_not_active, 422 business-rule

violations, 429 with Retry-After.

  • Test mode — the fact_test_ prefix / test OAuth grant points at an

isolated sandbox with external effects switched off.

factuarea-api — build the integration

| Skill | Activates when you're… | | --- | --- | | factuarea-api | Starting out, or asking what the API supports, how auth works, or what the docs say about something. The entry point — it routes to the other four | | factuarea-implement | Writing application code that calls the API with the official TypeScript or PHP SDK | | factuarea-webhooks | Building the endpoint that receives webhook deliveries — signature verification, dedup, acknowledgement | | factuarea-audit | Reviewing an integration that is already written, against the contract's rules | | factuarea-upgrade | Realigning code after a spec change or an SDK bump |

factuarea-api — where to start

  • Ten golden rules, each pointing at the skill that goes deep on it.
  • Documentation lookup that stays on the machine — `factuarea docs

list|grep|get downloads the published corpus once, caches it for 15 minutes and filters locally: no API key, and the search term never leaves the machine. Plus factuarea docs search` over the OpenAPI spec embedded in the binary, which never touches the network at all.

  • Authentication and environments — the two accepted headers and which wins,

what the fact_test_ sandbox switches off, the Factuarea-Version and

X-RateLimit-* response headers, and the shape of the error envelope.

  • Recipes that route to the right skill.

factuarea-implement — building the integration

  • Choosing the SDK@factuarea/sdk (Node 20+) or factuarea/factuarea-php

(PHP 8.2+), and what you take on by hand-rolling HTTP instead.

  • Contract invariants — opaque UUID v7 ids, the data envelope, cursor

pagination (has_more / next_cursor, never page numbers), Idempotency-Key on writes, and the key prefix as the only environment switch.

  • Server-side only — why there is no browser-safe key, and sandbox first.

factuarea-webhooks — receiving deliveries

  • The real delivery headersFactuarea-Signature, Factuarea-Event-Id,

Factuarea-Event-Type, Factuarea-Delivery-Id, and Idempotency-Key carrying the event id.

  • Verification — HMAC-SHA256 over the raw body, constant-time compare,

±5 min tolerance, and accepting any of the v1 values so a secret rotation doesn't reject a day of traffic.

  • Reliability — dedup by event id, fast 2xx with deferred work, the retry

schedule, out-of-order tolerance, and factuarea listen for the local loop.

factuarea-audit — reviewing what's already written

  • Six rule families — webhook signature, idempotency, API-key exposure, error

handling by code, rate limits, document lifecycle.

  • Findings with a severity, a file:line and a concrete fix — and explicit

exemptions per rule, so code that already does the right thing isn't flagged.

factuarea-upgrade — after a contract or SDK change

  • Drift detection against the live spec and the published SDK versions.
  • Breaking vs additive by the published versioning policy, including how a

dated Factuarea-Version pin changes the answer.

  • An ordered plan — breaking first, verified in the sandbox.

Resources

  • MCP docs: <https://docs.factuarea.com/mcp> — connect · authentication · tools ·

scopes · errors · test-mode

  • Docs home: <https://docs.factuarea.com>
  • Live OpenAPI spec: <https://api.factuarea.com/v1/openapi.json>
  • SDKs: <https://docs.factuarea.com/sdks> —

TypeScript · PHP

  • CLI: <https://docs.factuarea.com/cli>
  • Dashboard / API keys: <https://app.factuarea.com/settings/developers/api-keys>
  • Support: <https://docs.factuarea.com/support> · beta access: info@factuarea.com

License

MIT

Related plugins

Browse all →