Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Signato
S
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/11/2026, 12:15:07 AM

Signato

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View RepositoryVisit Website

Local confidentiality chamber: blocks the wrong AI output before it leaves the machine.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "signato": {
      "command": "npx",
      "args": [
        "-y",
        "signato"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

Signato integrations

The chamber between your AI and the world.

Signato is a deterministic confidentiality chamber that runs 100% on your own machine. You declare who must NOT know what (people with detection aliases, subjects with trigger keywords, an enforcement mode per wall), and every outbound event is checked, person against subject, in the same text. A hard wall denies the send before it happens; a soft wall lets it pass with a warning. Nothing is uploaded, ever: there is no server in the picture.

This repository is the public integration surface: how to wire the chamber into Claude Code today, the adapter contract for wiring it into other hosts, and synthetic configuration examples you can copy. The Signato software itself is proprietary and is not in this repository: install it with pip install signato (PyPI, proprietary license, the same full 30-day local trial, no card), or as a direct download with a published SHA-256 at signato.ai/trial.

Why a deterministic external layer

AI agents draft and act at scale. Prompt instructions do not reliably hold confidentiality: in the ConfAIde benchmark (ICLR 2024), even the best-performing frontier model leaked contextually private information in 39% of measured scenarios, and others did worse. The defense has to live outside the model: deterministic, testable, and checked on every outbound event that passes through it. That is what the chamber is.

See it block, before installing anything

An in-browser simulation of the same rule, with a synthetic matrix, runs at signato.ai/demo. Nothing you type there leaves the tab.

Quickstart: Claude Code hook (turnkey today)

The package ships an adapter for Claude Code's PreToolUse hook contract. This repository is also a Claude Code plugin marketplace, so the fastest path is two commands inside Claude Code (after pip install signato, Python 3.10+):

shell
/plugin marketplace add Signato-ai/signato-integrations
/plugin install signato-guard@signato

The plugin registers the hook and looks for your matrix at ~/.signato/matrix.yaml (override with JOHARI_GUARD_CONFIG); details in plugins/signato-guard/README.md.

Prefer to wire it by hand? Point the hook at your matrix in .claude/settings.json:

config.json
{
  "hooks": {
    "PreToolUse": [
      {
        "matcher": "*",
        "hooks": [
          {
            "type": "command",
            "command": "JOHARI_GUARD_CONFIG=/absolute/path/matrix.yaml JOHARI_GUARD_TELEMETRY=/absolute/path/telemetry.jsonl python3 -m johari_guard.adapters.claude_code"
          }
        ]
      }
    ]
  }
}

From that point, every agent action passes through the chamber before it executes. The contract, verified against version 0.13.2:

VerdictHook behavior
HARD (forbidden pair)exit 2, permissionDecision: "deny" with the reason; the action is blocked
SOFT (warned pair)exit 0, permissionDecision: "allow" plus additionalContext with the warning; the agent sees it and can rephrase
Cleanexit 0, no output; zero friction

A real deny, from a live run against the synthetic example matrix:

Code
BLOCK johari-guard [advisor-a-succession-only]: 'abel' is walled off company-sale(purchase offer)

Step-by-step setup, including the failure posture you should choose per channel, is in docs/claude-code-hook.md.

Building your matrix

Start from examples/matrix.example.yaml (100% synthetic), or let the package interview you: signato init in the terminal, or signato studio for the same five screens in your browser, served from 127.0.0.1, your machine. Every generated matrix ships with derived test scenarios (examples/scenarios.example.yaml) so the wall is executable, not aspirational: signato test runs them, signato simulate replays history before you change a wall, signato attest keeps an append-only record for audit.

MCP server (any MCP client)

Since 0.13.0 the chamber speaks MCP. Install the optional extra and run the server over stdio:

Terminal
pip install "signato[mcp]"
signato mcp

Three tools, a thin protocol shell over the same engine the hook uses: check_confidentiality (verdict for a text before it leaves), lint_matrix (authoring errors in your matrix), and run_matrix_tests (your own scenarios). Point any MCP client at it:

config.json
{"mcpServers": {"signato": {"command": "signato", "args": ["mcp"],
  "env": {"JOHARI_GUARD_CONFIG": "/absolute/path/to/matrix.yaml"}}}}

No matrix yet? The server answers NOT CHECKED and points you to signato quickstart, which builds a first working matrix in minutes and shows you a real block before asking anything else. Everything stays local; the server sends nothing anywhere.

Wiring a different host

The adapter spine is deliberately thin: a channel adapter implements only extract(message) and apply(verdict); the orchestration (extract, check, apply, with a declared fail-open or fail-closed posture) is fixed and lives outside the adapter. The contract is documented in docs/adapter-contract.md. Email gateways and document pipelines are implementation work we do with customers on assisted plans, or a custom adapter on the same contract; if you build one, we want to hear about it, open an issue.

Security posture, verifiable

  • Local-first is structural, not a setting. The core makes no network call, at install, at check time, or ever. Test it yourself: install, disconnect from the internet, and every command keeps working. The only network access in the whole journey is pip fetching one open-source dependency (PyYAML) at install time.
  • Checksum. The trial download is published with its SHA-256 on signato.ai/trial; verify before installing.
  • Fail posture is yours to declare. Fail-closed on external sends, fail-open for gradual rollout, per channel. On the standalone verification commands (check, scan, test, report, attest, simulate), an expired license refuses service rather than failing open. The Claude Code hook deliberately does not gate on license state: a wall that guards your agent's workflow should not stop standing because a card expired.
  • The package carries 830 automated tests (version 0.13.2).

Vulnerability reports: see SECURITY.md.

Pricing and licensing

The 30-day local trial is the full product, no card. Paid plans are per operation, not per seat: signato.ai/pricing. Documentation and examples in this repository are MIT-licensed (LICENSE.md); the Signato software is proprietary.


Signato is the maker of the local confidentiality chamber and a publisher of practical AI-governance intelligence. It is not a law firm and never a substitute for advice from a qualified lawyer. Belo Horizonte, Brazil. hello@signato.ai

Related MCP Servers

View all in Developer Tools View all alternatives
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • Claude Task Master logoClaude Task Master

    AI-powered task management system for AI-driven development. Features PRD parsing, task expansion, multi-provider support (Claude, OpenAI, Gemini, Perplexity, xAI), and selective tool loading for optimized context usage.

    πŸ’» Developer Tools7 views
    Compare vs Claude Task Master β†’
  • Shadcn Ui Mcp Server logoShadcn Ui Mcp Server

    MCP server that gives AI assistants seamless access to shadcn/ui v4 components, blocks, demos, and metadata.

    πŸ’» Developer Tools2 views
    Compare vs Shadcn Ui Mcp Server β†’
  • W
    Windows MCP

    An MCP Server for computer-use in Windows OS

    πŸ’» Developer Tools1 views
    Compare vs Windows MCP β†’

Frequently Asked Questions about Signato

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "signato": { "command": "npx", "args": ["-y", "signato"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewSignato AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/signato?style=directory)](https://allmcps.com/mcp/signato)
HTML Embed
<a href="https://allmcps.com/mcp/signato"><img src="https://allmcps.com/api/badge/signato?style=directory" alt="Signato on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Signato β†’Install in Claude DesktopInstall in CursorInstall in VS Code