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.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs 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 BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Trustmodel MCP
Trustmodel MCP logo
Health: ActiveRecent health check succeeded.Last checked 9/7/2026, 8:59:09 PM

Trustmodel MCP

User RatingsBe the first to rate and review this MCP server! 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 Repository1 GitHub StarsTotal stargazers on GitHub for the source repository (1 stars).Visit Website

Score any AI for trust across 10 dimensions; evaluate, monitor & govern LLMs and agents.

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
Not yet automatically verified

We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β€” we're steadily working through the catalog.

Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "trustmodel-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@trustmodel/mcp-server"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

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

Documentation Overview

TrustModel MCP Server

A Model Context Protocol (MCP) server that lets any AI agent call TrustModel for trust evaluation, safety/bias analysis, and end-to-end agentic trace evaluation.

Works with Claude Code, Cursor, Windsurf, Claude Desktop, and any other MCP-compatible client.

Quick Start

1. Get an API key

Sign up at app.trustmodel.ai and create an API key under Settings β†’ API Keys. Keys have the format tm-{env}-{keyid}_{secret} (e.g. tm-prod-abc12345_0123456789abcdef…).

2. Configure your MCP client

Claude Code

Terminal
claude mcp add trustmodel \
  --env TRUSTMODEL_API_KEY=tm-prod-xxxx_yyyy \
  -- npx -y @trustmodel/mcp-server

Cursor / Windsurf

Add to your MCP configuration file (.cursor/mcp.json or equivalent):

config.json
{
  "mcpServers": {
    "trustmodel": {
      "command": "npx",
      "args": ["-y", "@trustmodel/mcp-server"],
      "env": {
        "TRUSTMODEL_API_KEY": "tm-prod-xxxx_yyyy"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

config.json
{
  "mcpServers": {
    "trustmodel": {
      "command": "npx",
      "args": ["-y", "@trustmodel/mcp-server"],
      "env": {
        "TRUSTMODEL_API_KEY": "tm-prod-xxxx_yyyy"
      }
    }
  }
}

Environment Variables

VariableRequiredDefaultDescription
TRUSTMODEL_API_KEYNo*β€”Your TrustModel API key (tm-{env}-{keyid}_{secret}). *Not needed for the local tools (trustmodel_evaluate_local, trustmodel_govern); required for calibrated cloud tools.
TRUSTMODEL_TRACE_DIRNo~/.trustmodel-mcp/traces/Where streaming trace sessions are persisted as append-only JSONL. Sessions survive server restarts via rehydrate-on-read.
TRUSTMODEL_PROFILENodefaultTool profile. default exposes only the daily-driver tools; security / advanced / all expose every tool. See Tool profiles.
TRUSTMODEL_ADVANCED_TOOLSNofalseSet true to expose all tools regardless of TRUSTMODEL_PROFILE.
TRUSTMODEL_AGT_DISCOVERY_ENABLEDNofalseEnables the filesystem-touching Shadow Discovery tools (trustmodel_shadow_discovery_*). When unset, those tools return a skip report. (Only relevant when the advanced profile is on.)

Tool profiles

To stay within the 5–8 tool best-practice budget (more tools degrade an agent's tool selection), the server exposes a small default set and keeps advanced tools opt-in.

Default profile (6 tools) β€” the daily drivers: trustmodel_evaluate_local Β· trustmodel_score Β· trustmodel_trace_start Β· trustmodel_trace_step Β· trustmodel_trace_finalize Β· trustmodel_govern

Advanced β€” set TRUSTMODEL_PROFILE=security (or advanced / all, or TRUSTMODEL_ADVANCED_TOOLS=true) to additionally expose: trustmodel_evaluate (cloud batch), trustmodel_credits, trustmodel_upload_trace, trustmodel_evaluate_agent, trustmodel_score_agent, trustmodel_mcp_scan_server, trustmodel_shadow_discovery_*, trustmodel_redteam_*, and trustmodel_shadowai_* β€” 20 tools total.

Terminal
claude mcp add trustmodel --env TRUSTMODEL_PROFILE=security -- npx -y @trustmodel/mcp-server

Tools

The server exposes 18 tools across six areas. Use this table to pick the right one; full input/output docs follow below.

ToolGroupWhen to use
trustmodel_evaluateEvalKick off a batch trust evaluation of a model (safety, bias, accuracy, …); returns an id to poll.
trustmodel_scoreEvalFetch status/scores for an evaluation created with trustmodel_evaluate.
trustmodel_creditsEvalCheck remaining API credit balance.
trustmodel_trace_startAgentic TraceOpen a streaming trace session before an agent starts working.
trustmodel_trace_stepAgentic TraceRecord one reasoning step, tool call, tool result, or response as the agent runs.
trustmodel_trace_finalizeAgentic TraceClose the session, upload the trace, and auto-create the agent evaluation run.
trustmodel_upload_traceAgentic TraceOne-shot: PUT a pre-assembled trace JSON when you didn't stream it.
trustmodel_evaluate_agentAgentic TraceCreate an agentic evaluation run against an already-uploaded trace file_path.
trustmodel_score_agentAgentic TraceFetch scores/grade for an agentic evaluation run.
trustmodel_mcp_scan_serverSecuritySecurity-scan a third-party MCP server's tool list for risky/abusable tools.
trustmodel_shadow_discovery_scan_pathsShadow DiscoveryScan local filesystem paths for unregistered/shadow AI usage.
trustmodel_shadow_discovery_fingerprint_keysShadow DiscoveryDetect & fingerprint OpenAI/Anthropic API keys found on disk.
trustmodel_redteam_evaluateRed TeamLaunch an adversarial red-team evaluation against a model/endpoint.
trustmodel_redteam_resultsRed TeamFetch results for a red-team evaluation.
trustmodel_redteam_list_probesRed TeamList available red-team probes/attack categories.
trustmodel_shadowai_scanShadow AIStart a Shadow AI scan to find unregistered AI use across an environment.
trustmodel_shadowai_resultsShadow AIFetch results for a Shadow AI scan.
trustmodel_shadowai_eventsShadow AIStream the detection events for a Shadow AI scan.

Shadow Discovery tools (trustmodel_shadow_discovery_*) touch the local filesystem. They are always listed, but return a skip report unless TRUSTMODEL_AGT_DISCOVERY_ENABLED=true is set on the server.

Classic evaluation

trustmodel_evaluate

Create a batch evaluation run against a specified AI model. The backend runs a comprehensive suite (safety, bias, accuracy, hallucination, reasoning, etc.) and returns an id you can poll with trustmodel_score.

Inputs:

  • model_identifier (string, required) β€” e.g. "gpt-4o", "claude-sonnet-4-5". Discover via GET /sdk/v1/models/.
  • vendor_identifier (string, required) β€” e.g. "openai", "anthropic", "google".
  • api_key (string, optional) β€” Vendor API key for BYOK. Omit to use TrustModel's platform key. Do not pass a TrustModel API key here β€” that goes in the TRUSTMODEL_API_KEY env var.
  • categories (string[], optional) β€” Category names to evaluate. Only honored when evaluation_type is "Custom" or "Score Only".
  • evaluation_type (string, optional, default "Custom") β€” One of "Custom", "Score Only", "Comprehensive", "Limited", "Quick Scan".
  • application_type (string, optional, default "generic") β€” chatbot, knowledge-agent, creation-tool, document-repository, analysis-tool, automation-agent, generic.
  • user_personas (string[], optional, default ["external-customer"]) β€” Any of external-customer, internal-employee, technical-user, domain-expert, vulnerable-groups, generic.
  • application_description (string, optional).
  • domain_expert_description (string, optional) β€” When user_personas includes "domain-expert". One of "cross-domain" (default), "medical", "commercial_banking".
  • model_config_name (string, optional) β€” Display name for this run.
  • template_id (UUID, optional), template_name (string, optional) β€” Reuse or rename an existing evaluation template.

trustmodel_score

Fetch the detail (status, completion %, scores) for an evaluation created via trustmodel_evaluate.

Inputs:

  • evaluation_id (integer or numeric string, required) β€” The id returned by trustmodel_evaluate.

trustmodel_credits

Check remaining API credit balance. No inputs.

Agentic trace evaluation

TrustModel evaluates AI agents by consuming their execution trace (thoughts, tool calls, tool results, responses) and scoring them across 4 categories: tool_use_accuracy, reasoning_quality, goal_completion, safety_compliance.

There are two ways to submit a trace β€” streaming (preferred for live agents) and one-shot (when you have a pre-assembled trace).

Streaming capture (preferred)

Open a session, record steps as the agent works, finalize at the end. Finalize uploads to cloud storage and auto-creates the evaluation run.

trustmodel_trace_start

Open a new trace session.

Inputs:

  • goal (string, required) β€” What the agent is trying to achieve.
  • name (string, required) β€” Display name for the evaluation run.
  • agent_framework (string, required) β€” e.g. "langchain", "crewai", "claude-code", "custom".
  • agent_model (string, optional) β€” e.g. "gpt-4o", "claude-sonnet-4-5".
  • user_query (string, optional) β€” Original user prompt, if different from goal.
  • expected_outcome (string, optional).
  • metadata (object, optional) β€” Free-form passthrough metadata.

Returns: { trace_id, started_at }.

trustmodel_trace_step

Append a single step to the active session. Call once per reasoning step, tool call, tool result, or user-facing response.

Inputs:

  • trace_id (string, required) β€” From trustmodel_trace_start.
  • step_type (enum, required) β€” One of thought, think, tool_call, tool_result, observation, decision, error, human_input, response, final_answer.
  • content (string, required) β€” Human-readable text for the step. Empty string allowed.
  • tool_name (string, optional), tool_args (object, optional) β€” Use with tool_call.
  • tool_result (string or object, optional), tool_call_success (boolean, optional) β€” Use with tool_result.
  • model_used (string, optional), input_tokens / output_tokens (int, optional), duration_ms (int, optional), timestamp (ISO 8601, optional).

Returns: { trace_id, step_number, steps_recorded }. step_number is auto-assigned.

trustmodel_trace_finalize

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • Agent Trust logoAgent Trust

    AI agent trust & reputation protocol β€” verify, score, route, compare, delegate. 18 tools.

    πŸ’» Developer Tools1 views
    Compare vs Agent Trust β†’
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Codealive MCP logoCodealive MCP

    Semantic code search and analysis from CodeAlive for AI assistants and agents.

    πŸ’» Developer Tools0 views
    Compare vs Codealive MCP β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about Trustmodel MCP

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

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 PreviewTrustmodel MCP AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/trustmodel-mcp?style=directory)](https://allmcps.com/mcp/trustmodel-mcp)
HTML Embed
<a href="https://allmcps.com/mcp/trustmodel-mcp"><img src="https://allmcps.com/api/badge/trustmodel-mcp?style=directory" alt="Trustmodel MCP on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
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.
GitHub stars1
GitHub Star CountTotal stargazers on GitHub representing community popularity (1 stars).
36Quality signal: Fair Β· 36/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 ownership10/20
Documentation & tools16/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 unlock edit access and the Official badge β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge 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 Trustmodel MCP β†’Install in Claude DesktopInstall in CursorInstall in VS Code