http 402 payment-gated tool invocation with agent-side wallet signing
Implements a forward-only relay pattern where MCP clients invoke paid tools without pre-funding. When an agent calls a gated tool lacking an X-PAYMENT header, the server returns the upstream HTTP 402 response with an accept-list (payment terms, amount, recipient address) verbatim. The agent's wallet signs the payment in USDC on Base, includes the signature in X-PAYMENT header, and retries. The server never custodies funds — it validates signatures and forwards authenticated requests upstream. This enables pay-per-call microtransactions (0.005–0.25 USDC) without wallet pre-setup or escrow.
Unique: Uses HTTP 402 as a first-class MCP integration pattern with agent-side wallet signing, avoiding custody and enabling true pay-per-call without pre-funding. The forward-only relay design passes payment terms verbatim from upstream, making the server stateless and composable.
vs alternatives: Unlike API key rate-limiting or subscription models, this enables true micropayments with zero custody risk and transparent per-call pricing visible to agents at runtime.
solana wallet security audit with rule-based vulnerability detection
Provides a free, rule-based security audit for Solana wallets by analyzing on-chain activity patterns and account state. The audit applies a hardcoded ruleset (included in the MCP server) to detect common vulnerabilities: token account misconfigurations, suspicious delegation patterns, exposure to known malicious programs, and balance anomalies. Results are returned as structured findings with severity levels. This is the only free tool in the suite; others are gated behind x402 payments.
Unique: Embedded rule-based audit engine that runs locally on the MCP server without external API calls, making it fast and free. Rules are transparent and forkable — users can customize the ruleset for their own threat model.
vs alternatives: Faster and cheaper than calling external security APIs; no per-call cost and no dependency on third-party services, making it suitable for high-frequency agent audits.
solana wallet transaction and balance scanning with on-chain indexing
Scans a Solana wallet's transaction history, token balances, and account state by querying the Solana RPC API. Returns structured data including recent transactions, token holdings, SOL balance, and account metadata. The tool abstracts RPC complexity behind a simple wallet address input, handling pagination and data aggregation internally. Results are cached implicitly by the RPC provider but not by the MCP server itself.
Unique: Exposes Solana RPC queries through an MCP interface with payment gating, allowing agents to access wallet data on-demand without managing RPC connections directly. The tool abstracts RPC pagination and error handling.
vs alternatives: Simpler than direct RPC integration for agents; payment gating ensures fair usage and monetizes access to wallet data queries.
password breach detection via have i been pwned integration
Checks if an email address or password has appeared in known data breaches by querying the Have I Been Pwned (HIBP) API. The MCP server acts as a relay, forwarding requests to HIBP and returning breach records with metadata (breach name, date, compromised data types). Requests are gated behind x402 payments to monetize access to the HIBP service.
Unique: Wraps HIBP API access in an MCP interface with x402 payment gating, allowing agents to monetize breach-checking queries. The relay pattern keeps the MCP server stateless.
vs alternatives: Enables agents to access HIBP data without managing API keys directly; payment gating ensures fair usage and monetizes the integration.
jito tip calculator for solana transaction optimization
Calculates optimal Jito tips for Solana transactions based on current network congestion and MEV conditions. The tool queries Jito's tip API to fetch current tip percentiles and returns a recommendation (in lamports or USDC) for a given transaction size. This enables agents to optimize transaction inclusion probability without overpaying for tips.
Unique: Exposes Jito's tip API through MCP with real-time network condition analysis, allowing agents to make dynamic transaction optimization decisions. The tool abstracts Jito API complexity behind a simple input/output interface.
vs alternatives: Simpler than direct Jito API integration for agents; payment gating monetizes access to real-time tip data.
github repository health scoring and metadata extraction
Analyzes a GitHub repository and returns a health score based on metrics: commit frequency, issue resolution time, test coverage, documentation completeness, and dependency freshness. The tool queries the GitHub API to fetch repository metadata, recent commits, issues, and workflows, then applies a weighted scoring algorithm. Results include the overall health score (0-100) and component breakdowns.
Unique: Implements a multi-dimensional health scoring algorithm that combines commit frequency, issue resolution, test coverage, and dependency freshness into a single score. The tool abstracts GitHub API complexity and provides actionable metrics.
vs alternatives: More comprehensive than simple star counts or last-commit checks; provides actionable health metrics that agents can use for decision-making.
fred macro series retrieval and time-series analysis
Fetches economic time-series data from the Federal Reserve Economic Data (FRED) API, including GDP, inflation, unemployment, and interest rates. The tool accepts a FRED series ID and returns historical data points with dates and values. Results can be aggregated (mean, median, latest) or returned as full time-series for agent-side analysis.
Unique: Exposes FRED API through MCP with optional aggregation and time-range filtering, allowing agents to incorporate macro data into decision-making without managing API keys. The tool abstracts FRED's query complexity.
vs alternatives: Simpler than direct FRED API integration for agents; payment gating monetizes access to economic data queries.
drift protocol exposure and position analysis
Queries the Drift Protocol (a Solana perpetual futures platform) to retrieve a wallet's open positions, collateral, and leverage exposure. The tool fetches position data from Drift's on-chain state and returns structured position information including entry price, current price, PnL, and liquidation risk. This enables agents to monitor trading positions and assess liquidation risk in real-time.
Unique: Integrates with Drift Protocol's on-chain state to provide real-time position and liquidation risk analysis. The tool abstracts Drift's complex state structure and provides actionable position metrics.
vs alternatives: Direct on-chain integration provides real-time data without relying on external indexing services; payment gating monetizes access to Drift position queries.
+1 more capabilities