Skip to main content
Glama
solsentry

SolSentry MCP

Official
by solsentry

@solsentry/mcp

npm version license

RugCheck tells you a fire is burning. SolSentry tells you who lit it.

SolSentry packages its public operator-risk intelligence surface as an MCP server, a TypeScript SDK, and a skills bundle. All interfaces use the live REST API at https://api.solsentry.app.

Live references

Precision is auditable per-mint at /v1/predictions/{mint} (live). Pull any current system numbers from the live API rather than this README — never cite a hardcoded accuracy/precision figure or operator-level aggregate as a standing fact.

  • API stats: https://api.solsentry.app/v1/stats

  • NPM: https://www.npmjs.com/package/@solsentry/mcp

  • GitHub org: https://github.com/solsentry

Related MCP server: token-rugcheck

Interfaces

Surface

Use it when

Entry

MCP server

AI agents (Claude Desktop, Cursor, Claude Code, any MCP client)

npx @solsentry/mcp

TypeScript SDK

TS backends, bots, wallets, dApps that don't speak MCP

import { SolSentryClient } from "@solsentry/mcp/client"

Skills bundle

Claude Code / Cursor with the Agent Skills spec

npx skills add @solsentry/mcp

All three call the public REST API at api.solsentry.app. No API key required for read endpoints.

Numbers drift daily as predictions resolve — verify live: curl https://api.solsentry.app/v1/stats

What's in this repo

solsentry-mcp/
├── src/                            ← TypeScript source (MCP server + SDK)
├── skills/
│   └── solsentry-postdeploy/       ← 1 skill, 6 references (progressive disclosure)
│       ├── SKILL.md                  orchestrator: when to load each reference
│       └── references/
│           ├── threat-intel.md     · generic risk lookup
│           ├── counterparty.md     · pre-CPI counterparty check
│           ├── monitor.md          · post-deploy program monitoring
│           ├── forensics.md        · post-incident drain trace
│           ├── token-launch.md     · pre-launch readiness for your own token
│           └── cluster-graph.md    · operator/bot network exploration
└── docs/                           ← public reference docs
    ├── risk-scoring.md             · scoring methodology + thresholds
    ├── flags.md                    · canonical flag glossary
    ├── openapi.yaml                · machine-readable REST spec
    └── x402-example.md             · paid endpoint integration example

SolSentry monitors Solana mainnet continuously and tracks serial rug pull operators, bot clusters, and malicious token launches. The data is refreshed every 30 seconds and available to any client that speaks MCP or plain HTTP.

Quick start

npx -y @solsentry/mcp

Claude Desktop

{
  "mcpServers": {
    "solsentry": {
      "command": "npx",
      "args": ["-y", "@solsentry/mcp"]
    }
  }
}

Cursor / Claude Code

{
  "mcpServers": {
    "solsentry": {
      "command": "npx",
      "args": ["-y", "@solsentry/mcp"]
    }
  }
}

Tools

Tool

Purpose

check_operator

Risk profile of a wallet as a token deployer

check_token

Risk profile of a token mint

get_network_stats

System-wide public metrics

explain_risk

Plain-language summary for a wallet or mint

TypeScript SDK

import { SolSentryClient } from "@solsentry/mcp/client";

const client = new SolSentryClient();
const stats = await client.get("/v1/stats");
console.log(stats);

REST API

curl https://api.solsentry.app/v1/stats
curl https://api.solsentry.app/v1/operator/<wallet-address>
curl https://api.solsentry.app/v1/predictions/<mint-address>

Configuration

Environment variable

Default

Purpose

SOLSENTRY_API_URL

https://api.solsentry.app

API endpoint

SOLSENTRY_API_KEY

Bearer token for authenticated endpoints

Notes

  • Public quality claim: precision is auditable per-mint at /v1/predictions/{mint} (live) — re-verify on the day; never ship a hardcoded precision number.

Requirements

  • Node.js >= 18

License

MIT

Available Tools

5 tools
check_operatorA

Check the risk profile of a Solana wallet as a token operator/deployer. Returns confirmed rug count, risk label, behavioral tags, and a plain-English summary. Call this before interacting with tokens deployed by an address.

ParametersJSON Schema
NameRequiredDescriptionDefault
wallet_addressYesBase58-encoded Solana wallet address to check.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided; description carries full burden. It discloses that it returns specific data (rug count, risk label, behavioral tags, summary) and implies a read operation. No side effects mentioned, but adequate for the tool's nature.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no redundant information. Purpose, return data, and usage guidance are front-loaded and concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite no output schema or annotations, the description sufficiently covers purpose, parameters, return values, and usage context for an agent to correctly invoke the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Single parameter with 100% schema description coverage. Description adds no additional meaning beyond the schema's 'Base58-encoded Solana wallet address to check,' so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it checks the risk profile of a Solana wallet as an operator/deployer, distinguishing it from sibling tools like check_token (token risk) and get_top_operators (listing).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly guides when to use: 'Call this before interacting with tokens deployed by an address.' No explicit alternatives mentioned, but context with siblings implies differentiation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

check_tokenA

Check the risk profile of a Solana token by mint address. Returns risk score, risk flags, operator history, and bundle detection. Call this before buying or listing any token.

ParametersJSON Schema
NameRequiredDescriptionDefault
mint_addressYesBase58-encoded Solana token mint address.

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, yet description does not disclose behavioral traits such as read-only nature, authentication needs, rate limits, or error handling (e.g., invalid mint address). The burden is on the description, and it is insufficient.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences with no fluff. Front-loaded with purpose and key outputs. Could be slightly improved by structuring the return items, but overall efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter tool with no output schema, description covers purpose and return fields but lacks specifics on response structure or error cases. Adequate but not fully comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% (mint_address described). Description does not add extra meaning beyond the schema, which already explains 'Base58-encoded Solana token mint address.' Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description explicitly states the tool checks the risk profile of a Solana token by mint address, lists returned items (risk score, flags, operator history, bundle detection), and distinguishes from siblings like check_operator and explain_risk through specific purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides clear direction to call before buying or listing any token, implying pre-trade due diligence. Does not explicitly state when not to use or compare with siblings, but the context is sufficient.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

explain_riskA

Get a human-readable explanation of why a wallet or token is risky. Accepts either a wallet address (checked as operator) or a token mint address. Returns a plain-English warning suitable for displaying to end users.

ParametersJSON Schema
NameRequiredDescriptionDefault
addressYesSolana wallet address or token mint address.

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It discloses input types (wallet or token address) and output type (plain-English warning), but does not mention any behavioral traits like idempotency, side effects, or authentication needs. Adequate but not detailed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose. No wasted words; every sentence contributes meaningful information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, description only states 'plain-English warning' without specifying structure, severity levels, or examples. Adequate for a simple tool but could be more complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, but description adds value by clarifying that 'address' can be either a wallet address (checked as operator) or a token mint address, which is not evident from the schema alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states the verb 'Get a human-readable explanation' and the resource 'why a wallet or token is risky'. Distinguishes from sibling tools like check_operator and check_token, which likely provide binary risk status rather than explanation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implied when to use (when you need an end-user explanation) but does not explicitly state when not to use or mention alternative tools. Sibling tools exist but no guidance on choice.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_network_statsB

Get SolSentry system-wide threat intelligence statistics: total scans, accuracy, resolve rate, operator counts, bot clusters.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden but only states what is returned. It fails to mention safety, permissions, side effects, or that it is read-only, leaving behavioral traits undocumented.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single sentence that is front-loaded with action and lists outputs. Efficient and clear, though could be slightly more structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema, the description adequately explains return values. However, it lacks usage guidance and behavioral context, making it minimally complete for a simple tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist, so baseline is 4. The description adds value by enumerating the statistics returned, which is useful beyond the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'get' and resource 'network stats', specifying system-wide threat intelligence statistics. It distinguishes from siblings like check_operator and check_token by focusing on aggregate data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool vs alternatives. It does not specify context or exclusions, leaving the agent to infer from the purpose.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_top_operatorsA

Get the top Solana rug pull operators ranked by confirmed scam count. Returns a leaderboard of the worst serial deployers tracked by SolSentry.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoNumber of operators to return (1-50, default 10).

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It describes the output as a leaderboard with 'confirmed scam count' and source (SolSentry), but does not disclose data freshness, pagination, or if the result is real-time. The behavioral traits are adequately but not richly described.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, zero waste. The first sentence front-loads the purpose and resource, the second adds context. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only leaderboard tool with one optional parameter and no output schema, the description is complete. It states what is returned (ranked operators), the criterion (scam count), and the source (SolSentry). No additional completeness needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% for the sole parameter 'limit', so baseline is 3. The description does not add any additional meaning or context for the parameter beyond what is in the schema (e.g., default value or typical use).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get the top Solana rug pull operators ranked by confirmed scam count', specifying both the verb ('Get') and the resource (top operators ranked by scam count). It distinguishes from siblings like 'check_operator' (individual check) and 'get_network_stats' (network-level stats).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for obtaining a leaderboard of serial deployers, but does not explicitly state when to use vs alternatives (e.g., when needing a single operator check, use check_operator). No exclusions or when-not guidance are provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv0.2.2
    • First observedcheck_operator
    • First observedcheck_token
    • First observedexplain_risk
    • First observedget_network_stats
    • First observedget_top_operators

TDQS

A4/5.0
Disambiguation5/5

Each tool targets a distinct function: checking operator risk, checking token risk, explaining risk, getting network stats, and getting top operators. There is no overlap in purpose.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with snake_case: check_operator, check_token, explain_risk, get_network_stats, get_top_operators. The naming is predictable and uniform.

Tool Count5/5

With 5 tools, the server is well-scoped for risk assessment and monitoring of Solana tokens and operators. It covers core actions without unnecessary bloat.

Completeness5/5

The tool set provides full coverage for the domain: checking operator and token risk, explaining risk, and accessing system-wide statistics and top operators. No obvious gaps for the stated purpose.

Maintenance

ActivitySlowing
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables AI agents to scan crypto tokens for rug pulls, scams, and risk using a six-agent consensus system. It provides real-time security audits and risk scoring for tokens on Solana, Ethereum, Base, and BSC.
    6
    2
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    MCP server for real-time Solana token risk analysis. Cross-references RugCheck.xyz, DexScreener, and GoPlus Security to generate three-layer reports: machine verdict → LLM analysis → raw on-chain evidence. Live on Solana mainnet with USDC micropayments ($0.02/audit). Give any AI agent the ability to check if a token is safe before trading.
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    On-chain Solana token safety for trading agents — traces coordinated wallet funding, same-block Jito bundles, serial-rug deployers and live coordinated dumps into one Exit-Liquidity Risk verdict before a swap. Free tier, then $0.02 USDC/query via x402.
    1
    43
    1
    MIT

Latest Blog Posts

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/solsentry/solsentry-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server