Back to Browse

Tenant Isolation MCP Server

Developer ToolsModerate6.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Static analysis scanner for MCP server code and multi-tenant SaaS applications.

About

Static analysis scanner for MCP server code and multi-tenant SaaS applications.

Security Report

6.2
Moderate6.2Moderate Risk

This is a legitimate static analysis tool for detecting tenant isolation vulnerabilities in multi-tenant SaaS and MCP applications. The code demonstrates strong security practices with well-structured rule definitions, proper input validation via path boundary enforcement, and read-only-by-default MCP server design. No malicious patterns, credential exfiltration, or dangerous operations detected. Minor code quality observations around broad exception handling and logging do not materially impact security posture. Supply chain analysis found 1 known vulnerability in dependencies (1 critical, 0 high severity). Package verification found 1 issue.

3 files analyzed · 5 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-subodhkc-mcp-tenant-isolation": {
      "args": [
        "-y",
        "mcp-tenant-isolation"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

mcp-tenant-isolation

Static analysis scanner for multi-tenant SaaS and MCP server code. 57 deterministic rules that catch cross-tenant data leakage before it reaches production.

npm version npm downloads CI Docker License: MIT

What it does

If you build multi-tenant software, every query, every cache key, every file access, every API response needs to be scoped to the right tenant. Miss one, and Tenant A sees Tenant B's data. That's not a bug you want to find in production.

This scanner reads your source code and checks whether tenant isolation guards are present where they need to be. It covers 57 patterns across database queries, API routes, cache keys, file storage, schema design, logging, and MCP server architecture. It works with TypeScript, JavaScript, Prisma, Drizzle, raw SQL, Next.js, Express, and Fastify.

The scanner also runs as an MCP server, so you can plug it into Claude Desktop, Cursor, or any MCP-compatible agent and have your AI assistant scan code on demand.

Who uses this

  • SaaS engineering teams who need to catch tenant isolation gaps before code ships
  • MCP server developers building tools that handle tenant-scoped data
  • Security teams who want tenant isolation checks in CI/CD
  • AI agent developers who want their agents to scan code for cross-tenant risks

Why this exists

General-purpose security scanners are not purpose-built for tenant isolation patterns. They catch SQL injection and XSS. They do not check whether your findMany query includes an organizationId filter. They do not check whether your MCP tool handler scopes tool visibility by tenant. They do not check whether your cache key includes a tenant prefix.

This scanner does exactly that. 57 rules, each checking for a specific tenant isolation pattern, each producing a finding with the rule ID, file, line, missing guard, and a remediation hint.

Every rule is deterministic. Given the same source code, the scanner produces the same findings. No machine learning, no probabilistic scoring. Static analysis has inherent limitations though. It cannot verify runtime behavior, database-level enforcement, or dynamic tenant isolation. The scan output includes a limitations field that lists what was and was not checked for each run.

Install

npm install -g mcp-tenant-isolation

# or use npx (no install needed)
npx mcp-tenant-isolation scan ./src

# or use Docker (no Node.js needed)
docker run --rm -v $(pwd):/code subodhkc/mcp-tenant-isolation scan /code/src

Requires Node.js 22 or later.

Quick start

mti scan ./src
mti scan ./src --format sarif --output results.sarif
mti scan ./src --format markdown --output TENANT-ISOLATION-REPORT.md
mti scan ./src --format ai --output findings.json
mti scan ./src --severity HIGH
mti rules                          # list all 57 rules
mti baseline                       # snapshot current findings for proof-of-fix tracking
mti init                           # create .mtirc.json with defaults

Demo

Terminal Demo

Rules

42 general multi-tenant rules

PrefixCategoryCountSeverityWhat it checks
TCMTenant Context Management6CriticalTenant ID comes from session, not client input. Context propagation across async boundaries.
DBQDatabase Query Isolation10CriticalEvery query touching tenant-scoped data includes a tenant filter. Prisma, Drizzle, raw SQL.
IDORIDOR Prevention5CriticalID-based lookups verify tenant ownership before returning data.
CSICache and Session Isolation4HighCache keys and session data are tenant-scoped.
APIAPI Security3HighTenant-aware rate limiting and response scoping.
FSIFile Storage Isolation4HighS3, Blob, and filesystem access is tenant-scoped.
LOGLogging and Audit4MediumAudit logs include tenant context.
SCHSchema and Migration6HighPrisma models and SQL migrations include tenant columns and indexes.

15 MCP-specific rules

IDTitleSeverityWhat it checks
MCP-001Tool Visibility ScopingCriticalTool handler has no tenant-based allow/deny filter.
MCP-002Cache Key Tenant PrefixCriticalTool results cached without tenant prefix.
MCP-003Session Binding to User+TenantCriticalSession ID used as sole authorization.
MCP-004Token Exchange (RFC 8693)HighOriginal token forwarded instead of token exchange.
MCP-005Per-Tenant Rate LimitingMediumNo per-tenant rate limiting on tool calls.
MCP-006Vector Store Tenant NamespaceHighShared vector store without tenant namespaces.
MCP-007Tool Description InjectionMediumTool description could bypass isolation.
MCP-008Credential Vault Tenant ScopingCriticalCredential vault stores tokens without tenant scoping.
MCP-009Shared Service AccountHighSingle shared API key for all tenant API calls.
MCP-010Session Cleanup on DisconnectMediumNo deterministic session cleanup.
MCP-011Telemetry Tenant IdentifierLowTelemetry strips tenant identifier.
MCP-012Local Bind (127.0.0.1)HighMCP server binds to 0.0.0.0 instead of 127.0.0.1.
MCP-013Filesystem Tenant RootHighTool handler accesses filesystem without tenant root.
MCP-014Cross-Tenant Artifact LeakageHighArtifact storage without tenant prefix.
MCP-015Dynamic Tool NamespaceMediumTools registered without tenant namespace.

MCP rules are mapped to the OWASP MCP Top 10 (2025). See docs/OWASP-MAPPING.md for the full mapping. The mappings are advisory, for triage and reporting. This scanner does not certify OWASP compliance.

Architecture

The scanner pipeline runs in six stages:

  1. Parsers — Babel AST for TypeScript/JavaScript, Prisma schema parser, SQL migration parser, MCP SDK import detection
  2. IR and Flow Graph — Intermediate representation capturing sources, sinks, guards, routes, MCP tool definitions
  3. Rule Engine — 57 deterministic rules evaluated against the IR. Each rule defines sources, sinks, and required guards
  4. False Positive Filter — Test file detection, confidence scoring, pattern refinement
  5. Reporters — Terminal, JSON, SARIF 2.1.0, AI-friendly JSON with remediation hints, Markdown
  6. CLI and MCP Servermti CLI with scan/init/rules/suppress/baseline/mcp commands. MCP server exposes 4 tools

Structured output

Scan results include structured metadata beyond just findings:

  • Completeness — COMPLETE, PARTIAL, or ERROR. If files fail to parse or rules fail to evaluate, completeness drops to PARTIAL and the reasons are listed.
  • Coverage — Files discovered, parsed, failed to parse. Rules available, selected, evaluated, failed, triggered. Unsupported file types counted.
  • Concern families — Findings grouped into 8 concern families (Tenant Context, Data Isolation, Cache and Session, MCP Security, Secrets and Credentials, Vector and Storage, API and Access, Audit and Logging) for triage.
  • Limitations — What the scan could and could not verify. Always includes static analysis limitation. Includes flow analysis scope and proof-of-fix status.
  • Scan receipt — Provenance metadata with engine version, rulepack digest, timestamp, and a SHA-256 receipt hash for tamper detection.
  • Proof-of-fix — Each finding is tagged as STILL_PRESENT, NEW, or NOT_VERIFIABLE relative to a baseline file. Run mti baseline to establish a baseline.

Fingerprints

Findings use v2 semantic fingerprints that are stable under line movement and formatting changes. The fingerprint is derived from the rule ID, file path, normalized code snippet, and sorted missing guards. It does not include the line number. This means if you move code around without changing its semantics, the fingerprint stays the same and baseline tracking remains accurate.

MCP server

The package includes an MCP server for AI agent integration. It runs locally via stdio transport. No hosting, no network exposure.

{
  "mcpServers": {
    "tenant-isolation": {
      "command": "npx",
      "args": ["-y", "mcp-tenant-isolation", "mcp"]
    }
  }
}

Add this to your Claude Desktop, Cursor, Windsurf, or other MCP client config to let your AI agent scan code for tenant isolation issues on demand.

MCP tools

ToolDescriptionWrite?
scan_tenant_isolationScan a project path. Returns structured findings with completeness, coverage, concern families, and receipt.No
list_tenant_isolation_rulesReturns all 57 rules with metadata. Filterable by category.No
explain_tenant_isolation_ruleReturns rule details, OWASP mapping, CWE IDs, fix suggestions.No
suppress_tenant_isolation_findingAdd a suppression with reason, approver, controls, and expiry.Yes (opt-in)

The suppression tool is hidden by default. It only appears when the server is started with --allow-write-tools. This is a security boundary: read-only by default, write operations require explicit opt-in.

All filesystem operations during MCP scans are constrained to the project root configured at server startup. Traversal attacks (../), absolute paths outside root, UNC paths, and symlink escapes are rejected. See SECURITY.md for details.

CI/CD integration

Option 1: Pre-built GitHub Action (easiest)

Add this to .github/workflows/tenant-isolation.yml:

name: Tenant Isolation Scan
on: [push, pull_request]
jobs:
  scan:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      security-events: write
    steps:
      - uses: actions/checkout@v4
      - uses: subodhkc/mcp-tenant-isolation@v2
        with:
          path: ./src
          severity: HIGH
          fail-on: HIGH

Runs the scan, uploads SARIF to GitHub Code Scanning, generates a Markdown report artifact, and fails the workflow if HIGH or CRITICAL findings are detected.

Option 2: Manual npx

name: Tenant Isolation Scan
on: [push, pull_request]
jobs:
  scan:
    runs-on: ubuntu-latest
    permissions:
      contents: read
      security-events: write
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: 22
      - run: npx mcp-tenant-isolation scan ./src --format sarif --output results.sarif
      - uses: github/codeql-action/upload-sarif@v3
        with:
          sarif_file: results.sarif

Exit codes

CodeMeaning
0No findings
1Findings found
2Error (config invalid, parse failure, etc.)

GitHub Code Scanning integration

When you upload SARIF output using github/codeql-action/upload-sarif@v3, findings appear in your repository's Security > Code scanning alerts tab. This works with both free and Advanced Security-enabled repos.

What happens:

  1. mti scan --format sarif --output results.sarif generates a SARIF 2.1.0 file
  2. upload-sarif action sends it to GitHub's code scanning API
  3. Each finding becomes a code scanning alert with file, line, severity, and remediation hint
  4. Alerts can be dismissed, fixed, or tracked directly in the GitHub UI
  5. Pull request annotations appear automatically on changed files

Requirements:

  • permissions: security-events: write in your workflow
  • The SARIF file must be generated before the upload step

Configuration

Create .mtirc.json in your project root:

{
  "rules": {
    "severity": {
      "DBQ-001": "HIGH",
      "MCP-001": "CRITICAL"
    },
    "exclude": ["DBQ-010"]
  },
  "paths": {
    "include": ["src/**/*"],
    "exclude": ["**/*.test.ts", "**/*.spec.ts"]
  },
  "suppressions": ".mti-suppressions.json",
  "baseline": ".mti-baseline.json"
}

Advanced configuration

{
  "rules": {
    "severity": { "DBQ-001": "HIGH" },
    "exclude": ["DBQ-010"]
  },
  "paths": {
    "include": ["src/**/*"],
    "exclude": ["**/*.test.ts"]
  },
  "output": "terminal",
  "framework": "nextjs-app-router",
  "authHelpers": ["requireAuth", "getServerSession", "withAuth"],
  "tenantGuards": ["organizationId", "tenantId", "workspaceId"],
  "modelScopes": {
    "userScoped": ["User", "UserSession"],
    "global": ["Tenant", "AuditLog"]
  },
  "rulePacks": ["./custom-rules.json"],
  "suppressions": ".mti-suppressions.json",
  "baseline": ".mti-baseline.json"
}
FieldDescription
outputDefault output format: terminal, json, sarif, ai, markdown
frameworkFramework hint: nextjs-app-router, nextjs-pages, express, fastify, auto
authHelpersCustom auth function names to detect (reduces false positives)
tenantGuardsCustom tenant guard variable names beyond the defaults
modelScopesOverride model scope classification (userScoped, global, tenantScoped)
rulePacksPaths to custom rule pack JSON files

Custom rule packs

You can extend the scanner with custom rules via JSON rule packs. Custom rules are validated at load time:

  • Rule IDs must match PREFIX-NNN format (e.g., CUST-001)
  • Rule IDs cannot collide with built-in rules
  • Severity must be one of INFO, LOW, MEDIUM, HIGH, CRITICAL
  • Maximum 50 custom rules across all rulepacks
  • Rulepack paths are constrained to the project root (MCP mode)

Invalid custom rules are rejected with warnings. The scan continues with built-in rules.

Suppressions

Suppressions require a concrete finding fingerprint, a rule ID, a documented approver identifier, a reason, compensating controls, and an expiry date. Rule-wide suppressions (no fingerprint) are only permitted as documented permanent exceptions.

The documentedApprover field records who approved the suppression. It does not represent independent human verification. It is a recorded attribution string, not a claim of external review.

Baselines

Run mti baseline to snapshot current findings. Future scans compare against the baseline and tag each finding as STILL_PRESENT, NEW, or NOT_VERIFIABLE (if no baseline exists). This gives you proof-of-fix tracking over time.

Report formats

FormatFlagUse case
Terminal--format terminal (default)Developer console with pass/fail verdict
JSON--format jsonProgrammatic consumption, piping to other tools
SARIF--format sarifGitHub Code Scanning, Azure DevOps
AI JSON--format aiAI agent consumption with remediation hints and context
Markdown--format markdownShareable report for PRs, team review, documentation
# Generate a Markdown report for a PR
mti scan ./src --format markdown --output TENANT-ISOLATION-REPORT.md

# Upload SARIF to GitHub Code Scanning
mti scan ./src --format sarif --output results.sarif

Trust and supply chain

  • npm Trusted Publishing — packages are published via GitHub Actions OIDC, not long-lived tokens. Each publish uses a short-lived, workflow-specific credential.
  • Provenance attestations — every published package includes a signed provenance statement in the Sigstore transparency log. You can verify that the package was built from the exact source in this repository.
  • 0 npm audit vulnerabilities — dependencies are audited on every CI run. The lockfile is committed and CI uses npm ci for reproducible installs.
  • Deterministic rules — no machine learning, no probabilistic scoring. Given the same source code, the scanner produces the same findings every time.
  • Cross-platform CI — tested on Ubuntu, Windows, and macOS with Node 22 and 24. Node 26 canary runs as informational.
  • MIT licensed — free and open source. No telemetry, no phone-home, no data collection.

Limitations

Static analysis has inherent limits. Being upfront about them:

  • Intra-procedural flow analysis only. The scanner traces data flow within a single function body. It does not trace flow across function calls, files, or framework middleware boundaries. Most tenant isolation defects are missing-guard-at-sink problems that do not require inter-procedural analysis, but some edge cases may be missed.
  • No runtime verification. The scanner checks source code patterns. It cannot verify that database-level RLS policies are actually enabled, that middleware actually runs, or that tenant context is actually propagated at runtime.
  • TypeScript and JavaScript only. Python, Go, Ruby, and other languages are not supported yet.
  • False positives are possible. The scanner uses pattern-based detection with false-positive filtering (test file exclusion, auth signal detection, confidence scoring). Custom auth helpers and tenant guards can be configured via .mtirc.json to reduce false positives.
  • MCP stdio transport only. The MCP server runs locally via stdio. Remote/HTTP transport is not supported in v2.0.

See docs/FLOW-ANALYSIS-QUALIFICATION.md for detailed flow analysis scope.

Tech stack

  • AST Parsing: @babel/parser (TypeScript, JSX), Prisma schema parser, SQL migration parser
  • Rule Engine: RuleSpec declarative pattern with guard detection and evidence building
  • CLI: Commander
  • MCP: @modelcontextprotocol/server v2 (stdio transport, Zod schemas, structured output)
  • Output: Terminal, JSON, SARIF 2.1.0, AI JSON, Markdown
  • Testing: Vitest (203 tests, cross-platform CI on Ubuntu, Windows, macOS)

Roadmap

v2.0.0 (Current)

  • 57 rules (42 general + 15 MCP-specific)
  • TypeScript and JavaScript support
  • Prisma schema analysis
  • SQL migration analysis (RLS, tenant columns, indexes)
  • CLI with terminal, JSON, SARIF, AI JSON, Markdown output
  • MCP server v2 SDK (stdio transport, Zod schemas, structured output)
  • Structured MCP output with completeness, coverage, and concern families
  • Scan Receipt with rulepack digest and tamper-detection hash
  • Evidence Envelope for verifiable scan artifacts
  • Stable v2 semantic fingerprints (line-movement resistant)
  • OWASP MCP Top 10 mapping (official 2025 categories)
  • Path boundary enforcement (traversal, symlink, UNC, Windows 8.3)
  • Write-tool gating (read-only by default, suppression opt-in)
  • Suppression policy with expiration and documented approver
  • Baseline tracking with proof-of-fix states
  • Severity override in .mtirc.json
  • Custom rule packs with validation
  • Configurable auth helpers and tenant guards
  • Model scope classification with config overrides
  • Framework detection (Next.js, Express, Fastify)
  • Cross-platform CI matrix (Node 22/24, Ubuntu/Windows/macOS)

Future

  • Python support (FastAPI, Django, Flask)
  • SQLAlchemy ORM analysis
  • Watch mode (mti scan --watch)
  • VS Code extension
  • Runtime two-tenant adversarial test harness
  • Go and Ruby language support
  • Incremental scanning with AST cache

Links

License

MIT. Free and open source.

Reviews

No reviews yet

Be the first to review this server!