Psychosynth MCP
Enables autonomous agents (Nous Research's Hermes Agent) to query psychometric data profiles and behavioral responses via the Psychosynth MCP server, with on-chain payments.
Psychosynth
Psychosynth is an agent-native, on-chain psychometric data marketplace. It delivers high-variance, human-curated personality profiles and profile-conditioned behavioral responses to autonomous systems. Settle transactions query-by-query in USDC on Base using the x402 micro-payment protocol—completely free of human intermediaries.
System Architecture
graph TD
A["Generator OS (DB Templates)"] --> B["LLM Synthesis (Flash/Sonnet)"]
B --> C["Hooks Pipeline (validation & dedup)"]
C --> D["Curation Queue (Review Desk)"]
D --> E["Supabase DB Store"]
E --> F["x402 Proxy Middleware (Base)"]
F --> G["JSON API / MCP Server"]
G --> H["Autonomous Agents (Eliza, OpenClaw, Hermes)"]Related MCP server: revettr
Core Capabilities
1. v2 Psychometric Engine
Standard LLMs suffer from "average-model bias," producing homogeneous, risk-neutral responses in games and simulations. Psychosynth resolves this by delivering structured, high-variance datasets containing:
Five-Factor Model (OCEAN): Openness, Conscientiousness, Extraversion, Agreeableness, Neuroticism.
Dark Triad Traits: Machiavellianism, Narcissism, and Psychopathy.
Prospect Theory Posture: Loss aversion coefficients ($\lambda$) and power utility exponents for gains ($\alpha$) and losses ($\beta$).
Cognitive Reflection: System 1 (heuristic-driven) vs. System 2 (logical/deliberative) preferences, alongside Cognitive Reflection Test (CRT) scores.
2. Agent-Native Payments (x402)
Transactions settle query-by-query on the Base blockchain using the x402 standard:
Gasless Settlement: Agents use their EVM wallets to sign gasless
TransferWithAuthorizationpayloads (EIP-3009) in USDC.Proxy Middleware: The backend verifies the signature, broadcasts the settlement on-chain, and delivers the requested dataset in a single HTTP request loop.
3. Model Context Protocol (MCP) Server
Psychosynth exposes an MCP server to connect directly with autonomous agent runtimes.
Supported Frameworks: ElizaOS, OpenClaw (via MCPorter), Nous Research's Hermes Agent, and Virtuals Protocol (via G.A.M.E. SDK custom actions).
Exposed Tools:
list_products: Discover available products, schemas, and pricing.preview_records: Fetch free, deterministic samples to verify schema shape.get_quote: Request an x402 payment quote without executing transactions.query_records: Execute on-chain payments and retrieve full data payloads.
4. Interactive Lab OS Playground
Psychosynth hosts an ultra-premium, dark-luxury financial dashboard for human interaction and debugging at /playground:
Real-Time Radar Chart: Dynamic SVG spider map showing 8 psychometric dimensions (OCEAN, Dark Triad, Prospect Theory) updating instantly as parameters change.
Holographic Agent Passports: Generates beautiful, shareable glassmorphism identity cards with automated archetype classification and direct 1-click Twitter sharing.
Multi-Agent Duel Arena: A live simulation pit where two agents with distinct profiles (e.g., Solana Degen vs. Risk-Averse Institution) negotiate a transaction, with System 1/2 reasoning streaming in real-time.
x402 Protocol Inspector: Step-by-step interactive terminal visualizing the HTTP 402 payment challenge, EIP-712 signing, Base facilitator settlement, and payload decryption.
Setup & Installation
Prerequisites
Node.js >= 18
Supabase CLI (optional, for local DB development)
Quick Start
Clone the repository and install dependencies:
git clone https://github.com/3esign/psychosynth.git cd psychosynth npm installConfigure environment variables:
cp .env.example .env # Fill in Supabase keys, X402 payout address, and keys.Deploy Supabase migrations and seed data:
npx supabase db push # Seeds the base schema and version 2 generatorsLaunch the Next.js development server:
npm run dev
MCP Server Configuration
Build the MCP server (npm run build inside mcp/), then register it with your agent by adding
the following entry to your MCP client config (e.g. claude_desktop_config.json). Use the
absolute path to the built server on your machine:
{
"mcpServers": {
"psychosynth": {
"command": "node",
"args": ["/absolute/path/to/psychosynth/mcp/dist/index.js"],
"env": {
"PSYCHOSYNTH_API_URL": "https://psychosynth.vercel.app",
"BUYER_PRIVATE_KEY": "0xYourBuyerWalletPrivateKey",
"BASE_RPC_URL": "https://mainnet.base.org"
}
}
}
}CLI & Scripts
npm run typecheck— Runs TypeScript compiler checks without emitting files.npm run buyer-test— Simulates an end-to-end paid query against a running instance.npm run export:sft | export:dpo | export:reject-cls— Exports curation data into training formats.
Documentation
Full architectural specifications, master plans, and developer logs reside in the docs/ folder:
MASTERPLAN.md — Product vision and economic structures.
DISCOVERY.md — Framework-specific agent integration details.
DEVELOPMENT.md — Detailed engineering specs and database schema designs.
Ecosystem & Platform Integrations
1. Faces Wallet MCP (Buzz by Block & ACP Native)
Psychosynth connects directly with Buzz by Block agents (Goose, Codex, Claude Code) via the Faces Wallet MCP server. Agents in a Buzz workspace use their on-chain Base wallet to autonomously settle x402 queries for psychometric data using x402_fetch.
Repository: https://github.com/3esign/Faces-Wallet-MCP
Capability: Any Buzz agent can load the Faces MCP server, check balances, and query Psychosynth endpoints with automated EIP-3009 gasless USDC settlement up to a set spend cap.
2. Bankr Ecosystem (x402 Native)
Psychosynth speaks standard x402: agents sign a gasless USDC EIP-3009 TransferWithAuthorization on Base and the server settles it via an x402 facilitator (the facilitator broadcasts and pays gas). This is the payment shape Bankr platform wallets, x402-fetch, and most agent wallet layers produce automatically. Self-settled txHash payments (Base or Solana) remain supported as a fallback.
Free agent preflight:
GET /api/v1/discovery— products, live prices, tiers, payTo, and settlement methods in one call.Bankr skill: the submission package for the BankrBot/skills catalog lives in
integrations/bankr-skills/psychosynth/(SKILL.md + catalog.json + logo + references + scripts). Once merged it surfaces on skills.bankr.bot and installs with:install the psychosynth skill from https://github.com/BankrBot/skills/tree/main/psychosynth.Positioning: existing intelligence skills in that ecosystem analyze tokens; Psychosynth sells synthetic behavioral data — priors about how market participants act — for trading sims, counterparty modeling, and agent stress-testing.
2. Virtuals Protocol (G.A.M.E. SDK Custom Actions)
Virtuals Protocol agents running the G.A.M.E. Framework can query Psychosynth natively without registering a profile or hosting additional worker processes.
Action Schema: Map our query endpoints to a G.A.M.E. custom action. The agent determines which data it needs based on its operational loop.
Dynamic Payment: The agent constructs and signs a gasless EVM
TransferWithAuthorizationpayload (EIP-3009) to pay for the query.Seamless HTTP resolution: The agent's tool execution script POSTs/GETs the payload directly to our Vercel API endpoint. We verify and settle the transaction, returning the records in the same response block. See API Documentation for schema payloads and code templates.
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
- Flicense-qualityCmaintenancePay-per-thought AI second opinions for autonomous agents. Agents pay 0.01–0.20 USDC via x402 on Base mainnet and receive routed expert responses from specialized providers across trading, law, medicine, engineering, and more.
- AlicenseAqualityFmaintenanceCounterparty risk scoring for agentic commerce. Scores wallets, domains, IPs, and companies 0-100 before AI agents transact via x402 micropayments on Base13MIT

hyperd-mcpofficial
AlicenseAqualityBmaintenancePre-trade DeFi intelligence for AI agents. 20 paid x402 endpoints, USDC on Base.23561MIT- FlicenseAqualityCmaintenancePay-per-call tools for AI agents including trust checks, due diligence, market data, and human-verified approvals, settled in USDC on Base via the x402 protocol.16
Related MCP Connectors
PayPerByte — per-byte data for AI agents: x402 USDC on Base, EIP-712-attested. No token.
63 pay-per-call tools for agents: vision, text, data, web, blockchain. USDC on Base via x402.
AI-native settlement rail + intelligence oracle for autonomous agents. x402, Base mainnet, 81 tools.
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/3esign/psychosynth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server