Inoyu MCP Unomi Server MCP Server

A Model Context Protocol server to access Apache Unomi data

Local serverstdio

What is the Inoyu MCP Unomi Server MCP server?

Most developer tooling work still happens through a UI a human drives. Inoyu MCP Unomi Server MCP server moves it into the conversation instead. A Model Context Protocol server to access Apache Unomi data.

The short version

A Model Context Protocol server enabling Claude to maintain user context through Apache Unomi profile management.

This MCP server enables Claude to maintain context about users through Apache Unomi's profile management system. Here's what you can achieve with it:

Getting it running

Installation goes through your MCP client rather than a global install: point it at ensures on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

The tools it exposes

The server publishes 14 tools. What each one is for:

  • get_my_profile — Get your profile using environment variables
  • requireSegments — Include segment information
  • requireScores — Include scoring information
  • update_my_profile — Update properties of your profile
  • Example — json
  • get_profile — Retrieve a specific profile by ID
  • search_profiles — Search for profiles
  • create_scope — Create a new Unomi scope
  • get_tenant_info — Get information about the current tenant (V3 only)
  • update_consent — Update a user's consent status using the modifyConsent event
  • consentId — Unique identifier for the consent
  • status — Consent status (GRANTED, DENIED, or REVOKED)

What it needs from you

Configuration is passed through the environment: UNOMI_BASE_URL, UNOMI_VERSION, UNOMI_USERNAME, UNOMI_PASSWORD, UNOMI_PROFILE_ID, UNOMI_KEY, UNOMI_EMAIL, UNOMI_SOURCE_ID. 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.

  • Running Apache Unomi server - Claude Desktop installation - Network access to Unomi server - Proper security configuration - Required environment variables

Things to watch

  • 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.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Inoyu MCP Unomi Server.
  • 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.

How it compares

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. Inoyu MCP Unomi Server's toolset — get_my_profile, requireSegments, requireScores and 11 more — is a fair guide to whether it matches your workflow. It is maintained by sergehuber; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Inoyu MCP Unomi Server's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Available tools

ToolWhat it does
get_my_profileGet your profile using environment variables
requireSegmentsInclude segment information
requireScoresInclude scoring information
update_my_profileUpdate properties of your profile
Examplejson
get_profileRetrieve a specific profile by ID
search_profilesSearch for profiles
create_scopeCreate a new Unomi scope
get_tenant_infoGet information about the current tenant (V3 only)
update_consentUpdate a user's consent status using the modifyConsent event
consentIdUnique identifier for the consent
statusConsent status (GRANTED, DENIED, or REVOKED)
typeIdentifierType identifier of the consent
scopeScope for the consent (defaults to claude-desktop)

How to install the Inoyu MCP Unomi Server MCP server

{
  "mcpServers": {
    "unomi-server": {
      "command": "npx",
      "args": ["@inoyu/mcp-unomi-server"],
      "env": {
        "UNOMI_BASE_URL": "http://your-unomi-server:8181",
        "UNOMI_VERSION": "3", // Use "2" for Unomi V2, "3" for Unomi V3 (default)
        "UNOMI_USERNAME": "your-username", // Required for V2, fallback for V3
        "UNOMI_PASSWORD": "your-password", // Required for V2, fallback for V3
        "UNOMI_PROFILE_ID": "your-profile-id",
        "UNOMI_KEY": "your-unomi-key", // Required for V2 only
        "UNOMI_EMAIL": "your-email@example.com",
        "UNOMI_SOURCE_ID": "claude-desktop",
        "UNOMI_TENANT_ID": "your-tenant-id", // Required for V3
        "UNOMI_PUBLIC_KEY": "your-public-key", // Required for V3
        "UNOMI_PRIVATE_KEY": "your-private-key" // Required for V3
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Running Apache Unomi server - Claude Desktop installation - Network access to Unomi server - Proper security configuration - Required environment variables
VariableDescriptionRequired
UNOMI_BASE_URLEndpoint or connection string the server talks to.Yes
UNOMI_VERSIONConfiguration value read at startup.Optional
UNOMI_USERNAMEConfiguration value read at startup.Optional
UNOMI_PASSWORDConfiguration value read at startup.Optional
UNOMI_PROFILE_IDConfiguration value read at startup.Optional
UNOMI_KEYCredential the server authenticates with.Yes
UNOMI_EMAILConfiguration value read at startup.Optional
UNOMI_SOURCE_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Inoyu MCP Unomi Server to get my profile.
  • Use Inoyu MCP Unomi Server to requireSegments.
  • Use Inoyu MCP Unomi Server to requireScores.

Frequently asked questions

It connects Inoyu MCP Unomi Server to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (get_my_profile, requireSegments, requireScores, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Inoyu MCP Unomi Server directly.