Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Luigi Ucp Server

FreeNot checked

Implements Universal Commerce Protocol (UCP) primitives backed by HubSpot CRM, enabling buyer profile, product catalog, cart, and order operations via MCP tools

GitHubEmbed

About

Implements Universal Commerce Protocol (UCP) primitives backed by HubSpot CRM, enabling buyer profile, product catalog, cart, and order operations via MCP tools.

README

A local MCP server implementing Universal Commerce Protocol (UCP) primitives, backed by HubSpot CRM. Built as a proof-of-concept for the AgentFriend blog.

Architecture

[Buyer Agent: Claude]  ←→  MCP (stdio)  ←→  [This Server]  ←→  HubSpot CRM

UCP Primitive Mapping

UCP Primitive MCP Tool Backend
BuyerProfile get_buyer_profile HubSpot Contacts
ProductCatalog get_product_catalog HubSpot Products
Cart create_cart in-memory
Order place_order HubSpot Deals

Setup

pip install -r requirements.txt
cp .env.example .env
# Add your HubSpot Private App token to .env

Register as MCP server in Claude Code

Add to your ~/.claude/settings.json:

{
  "mcpServers": {
    "luigi-ucp-server": {
      "command": "python",
      "args": ["/absolute/path/to/luigi-ucp-server/server.py"],
      "env": {
        "HUBSPOT_ACCESS_TOKEN": "your-token-here"
      }
    }
  }
}

HubSpot Private App Setup

  1. HubSpot → Settings → Integrations → Private Apps
  2. Create a Private App with these scopes:
    • crm.objects.contacts.read
    • crm.objects.products.read
    • crm.objects.deals.write
    • crm.objects.line_items.write
    • (Notes are readable via crm.objects.contacts.read — no separate scope needed)
  3. Copy the token into .env

from github.com/PhilInTheLoop/luigi-ucp-server

Installing Luigi Ucp Server

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/PhilInTheLoop/luigi-ucp-server

FAQ

Is Luigi Ucp Server MCP free?

Yes, Luigi Ucp Server MCP is free — one-click install via Unyly at no cost.

Does Luigi Ucp Server need an API key?

No, Luigi Ucp Server runs without API keys or environment variables.

Is Luigi Ucp Server hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install Luigi Ucp Server in Claude Desktop, Claude Code or Cursor?

Open Luigi Ucp Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Luigi Ucp Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs