New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@palveron/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@palveron/mcp-server

Palveron MCP Server — Model Context Protocol integration for AI Governance. Enables LLM tools to enforce governance policies in real time.

Source
npmnpm
Version
1.0.2
Version published
Weekly downloads
32
-28.89%
Maintainers
1
Weekly downloads
 
Created
Source

@palveron/mcp-server

Official Palveron MCP Server — Model Context Protocol integration for AI Governance

npm version npm downloads License: MIT Documentation Early Access

⚡ Early access. Palveron is launching soon and access is currently invite-gated. This server is fully functional — you just need a pv_live_ key, which comes with an Early Access invite. Join the waitlist → palveron.com/early-access

Run every tool call your MCP-capable client makes — Claude Code, Cursor, any other MCP host — through the Palveron AI Governance Gateway. Policies enforced, PII masked, decisions logged, audit trails anchored.

  • Drop-in MCP server — one binary, configure your MCP host, you're done
  • Real-time policy enforcement — block, modify, or allow each tool call before it executes
  • Audit trail per tool call — trace IDs flow back to the Palveron dashboard
  • Built on @palveron/sdk — retry, circuit breaker, typed errors out of the box

Installation

npm install -g @palveron/mcp-server
# or use directly via npx
npx @palveron/mcp-server

Quick Start

The pv_live_… key in the examples below requires an Early Access invite — request one here. Once you have a key, everything works out of the box.

Claude Code

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "palveron": {
      "command": "npx",
      "args": ["@palveron/mcp-server"],
      "env": {
        "PALVERON_API_KEY": "pv_live_xxx",
        "PALVERON_BASE_URL": "https://gateway.palveron.com"
      }
    }
  }
}

Other MCP hosts

Any MCP-capable host can launch the server via the palveron-mcp binary:

PALVERON_API_KEY=pv_live_xxx palveron-mcp

Tools exposed via MCP

ToolPurpose
palveron_verifyGate any prompt before the host sends it to the model. Returns ALLOWED / BLOCKED / MODIFIED plus the sanitized prompt.
palveron_check_tool_callGate a specific tool invocation against the agent's capability model.
palveron_list_policiesList the project's active guardrails so the host can explain its decisions.

Configuration

The server reads its configuration from environment variables. The MCP host sets them; you never put secrets in code.

VariableRequiredDescription
PALVERON_API_KEYyesAPI key (pv_live_…) — comes with an Early Access invite
PALVERON_BASE_URLnoOverride the gateway endpoint (default: https://gateway.palveron.com)
PALVERON_TIMEOUT_MSnoRequest timeout in ms (default: 30000)

Requirements

  • Node.js 18 or newer
  • An MCP-capable client (Claude Code 0.4+, Cursor, etc.)

License

MIT — Copyright © 2026 Palveron.

Keywords

palveron

FAQs

Package last updated on 10 Jul 2026

Related posts