Trust Vault MCP Server
Provides read-only access to Trust Vault protocol data on the Solana blockchain, including protocol overview, supported tokens, market rates, open orders, order status, platform stats, fee structure, and currencies/processors.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Trust Vault MCP ServerWhat are the current market rates for supported tokens?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Trust Vault MCP Server — Phase 1 (Read-Only)
Exposes 8 read-only Trust Vault tools over MCP (Streamable HTTP transport):
get_protocol_overview, get_supported_tokens, get_market_rates,
list_open_orders, get_order_status, get_platform_stats,
get_fee_structure, get_currencies_and_processors.
No wallet, no signing, no auth surface — pure on-chain reads + static config.
Setup
npm installSet env vars (or a .env if you wire one in):
TRUST_EXPRESS_IDL_PATH=/path/to/your/trust_express.json # your real Anchor IDL
SOLANA_RPC_URL=https://api.devnet.solana.com # or mainnet
TRUST_VAULT_KNOWLEDGE_PATH=/path/to/knowledge/trustvault.md # same file /api/chat already loads
PORT=3939npm run build
npm startRelated MCP server: x402-api
Before this goes live — 3 things to fix, all flagged inline in code
src/tools/fetchOrders.ts—pricePerTokenscale is unconfirmed. The program docs say "fiat per whole token, raw fiat units" but don't state whether NGN is stored as whole naira or kobo (×100). Currently passed through raw. Check againstBuyOrderCard/SellOrderCarddisplay logic in the client and fix that one line — it's load-bearing for every tool that surfaces a price.src/program.ts— pointTRUST_EXPRESS_IDL_PATHat your real IDL. Deliberately not faked. The server refuses to start (with a clear error) if the file is missing, and separately refuses to start if the IDL'saddressfield doesn't match the known program ID inconstants.ts— catches a devnet/mainnet mix-up before it causes silent wrong reads.src/constants.ts—FEE_STRUCTURE. Set to the corrected 50% LP / 30% platform / 20% validators split. Thetrust-vaultskill file still says 40/40/20 — that's stale, don't copy from it. Fix the skill file separately so future docs don't drift again.
Known issue — needs a look before you rely on multi-request sessions
While testing the Streamable HTTP session handling (src/server.ts), I hit
a case where tools/list returned "Server not initialized" on the request
immediately following a successful initialize — i.e. the onsessioninitialized
callback's transports.set(id, transport) didn't appear to be visible yet
on the next request in the same process. I didn't get to root-cause this
before switching to just handing off the files — it may be a real race in
how server.connect() vs transport.handleRequest() are sequenced here,
or it may have been sandbox process weirdness (multiple stale node
processes potentially fighting over the port during testing). Worth
re-testing this cleanly in your own environment — if it reproduces there
too, the app.post("/mcp", ...) handler in src/server.ts is where to dig
in, specifically whether onsessioninitialized fires and populates the
transports map before the next HTTP request's lookup runs.
Design notes
Every tool is read-only — no
.methods()calls, only.account.fetch()/.all(). The Anchor provider has no real signer (see comment insrc/program.ts) — it throws if anything ever tries to sign, as a deliberate guardrail.get_order_statusdeliberately does NOT fetchValidatorVotePDAs (votes_for/votes_against/executed) — that's a separate account keyed offkeccak256(payout_reference), out of scope for general-info tools. Seesrc/tools/orderStatus.tsfor the reasoning.get_protocol_overviewreads the sameknowledge/trustvault.mdyour/api/chatroute already loads — update one file, both surfaces pick it up.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-quality-maintenanceProvides read-only access to TrustLayer's public API, enabling users to query and retrieve data about parties, documents, projects, and other TrustLayer entities through MCP-compatible tools.Last updated
- AlicenseAqualityDmaintenanceMCP server for pay-per-call DeFi and crypto data via x402 micropayments on Base. 8 endpoints: token prices, TVL, funding rates, token security, gas tracker, whale monitoring, wallet profiling, and yield scanning.Last updated850MIT

@agentkarma/mcpofficial
AlicenseAqualityCmaintenanceExposes AgentKarma's read-only trust and reputation tools (karma, agents, succession, bonds, check_trust) to any MCP client for checking on-chain agent reputation.Last updated9201MIT- AlicenseCqualityAmaintenanceRead-only MCP server that exposes public TokenLab model catalog tools for agents to discover models, inspect request contracts, and compare pricing.Last updated311,314MIT
Related MCP Connectors
MEOK ABCI Bridge MCP — read-only Tendermint / Cosmos blockchain query for agents. Built-in registry
AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.
Read-only Remote MCP for externally grounded AI agent trust receipts.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/O2lord/trust-vault-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server