Skip to main content
Glama

Server Details

Solana MCP for wallets, trades, markets, PnL, transfers, onchain data, signable swaps and API tools.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
vybenetwork/solana-mcp-vybe
GitHub Stars
1,240
Server Listing
Solana MCP by Vybe

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.8/5 across 5 of 5 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct role: list-endpoints enumerates all paths, search-endpoints finds specific ones, get-endpoint retrieves details, execute-request makes actual API calls, and pay-with-x402 handles payment. There is no real overlap between these actions.

Naming Consistency4/5

Most tool names follow a consistent lowercase verb-first hyphenated pattern (execute-, get-, list-, search-). pay-with-x402 is a minor deviation with a phrasal verb, but it still maintains the overall verb-led style.

Tool Count5/5

Five tools is an appropriate count for a focused API client server. Each tool serves a distinct purpose in the discovery-to-execution workflow, earning its place without excess or deficiency.

Completeness5/5

The tool set covers the complete workflow: discovering endpoints, getting endpoint details, managing access via payment, and executing requests. This allows agents to fully explore and call any Vybe API endpoint with no obvious dead ends.

Available Tools

5 tools
execute-requestExecute API RequestC
Destructive
Inspect

Executes an API request with a given HAR request object.

ParametersJSON Schema
NameRequiredDescriptionDefault
harRequestYesHAR request object
Behavior2/5

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

Annotations already indicate destructiveHint=true and readOnlyHint=false, so the agent knows this may cause changes. However, the description adds no extra behavioral context such as potential side effects, authentication requirements, rate limits, or data that could be affected. It merely restates the action.

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?

The description is a single concise sentence with no filler or repetition. It is appropriately front-loaded and easy to parse, though it omits essential usage context that would make it more useful.

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

Completeness2/5

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

For a destructive, open-world tool with a nested schema and no output schema, the description is severely under-specified. It does not explain what the function returns, how errors are handled, or in what circumstances to choose this over sibling tools. The description alone would leave an agent uncertain about side effects and expected results.

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?

The input schema provides descriptions for harRequest and its nested fields (url, method, headers, postData, queryString). The tool description adds no additional parameter semantics, so it relies entirely on the schema. Baseline 3 applies due to high schema description coverage.

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

Purpose4/5

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

The description clearly states the action ('Executes an API request') and the resource ('a given HAR request object'). It distinguishes itself from sibling tools focused on retrieving or searching endpoints, though it doesn't explicitly name an alternative.

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 is provided on when to use this tool versus siblings like get-endpoint or search-endpoints. There are no stated prerequisites, exclusions, or example scenarios, leaving the agent to infer usage from the tool name alone.

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

get-endpointGet Endpoint DetailsA
Read-only
Inspect

Gets detailed information about a specific API endpoint, including security schemes and servers

ParametersJSON Schema
NameRequiredDescriptionDefault
pathYesThe API endpoint path (e.g. /api/v1/users).
methodYesThe HTTP method (e.g. GET, POST, PUT, DELETE).
Behavior3/5

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

Annotations declare readOnlyHint: true and openWorldHint: false, so the safety profile is already known. The description adds that the details include 'security schemes and servers', which is helpful return-content context, but it does not disclose additional behavioral traits like permissions, error handling, or side effects. With annotations covering the core safety aspect, this is adequate but not rich.

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?

The description is a single, front-loaded sentence that directly states the tool's purpose and key return elements. No unnecessary words, and every part is informative. This is a model of conciseness.

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

Completeness4/5

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

For a simple read-only tool with two well-described parameters and no output schema, the description provides enough context: it names the resource type (endpoint), the action (get details), and specific scopes (security schemes and servers). Combined with annotations for safety and schema for parameters, it is sufficiently complete for an agent to invoke correctly, though return format is not detailed.

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?

The input schema provides full descriptions for both 'path' and 'method' (100% coverage). The tool description does not add any further meaning to the parameters, but the schema already does the heavy lifting, so a baseline of 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 the tool's function: 'Gets detailed information about a specific API endpoint'. The verb 'Gets' indicates a read operation, and the resource is precisely the endpoint details. This distinguishes it from sibling tools like list-endpoints (which lists endpoints) and search-endpoints (which searches), making the purpose unambiguous.

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 the tool should be used when detailed information about a specific endpoint is needed, but it does not explicitly contrast with alternatives or state when not to use it. No exclusions or alternative tool names are mentioned, so guidance is limited to contextual inference.

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

list-endpointsList API EndpointsA
Read-only
Inspect

Lists all API paths and their HTTP methods with summaries, organized by path. Results can be passed directly into 'get-endpoint'.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior3/5

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

Annotations already declare readOnlyHint=true, so the read-only nature is covered. The description adds that results are organized by path and include methods and summaries, which is useful but does not disclose potential large result sets or any ordering guarantees. Since the schema has no parameters, the description shares the burden of explaining behavior, but the added detail is modest.

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?

The description is exactly two sentences, front-loaded with the main purpose, and contains no fluff. Every phrase earns its place by specifying scope, content, and downstream usage.

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

Completeness4/5

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

For a simple list tool with no parameters and no output schema, the description adequately conveys what is returned (paths, methods, summaries) and how to use the results (feed into get-endpoint). It does not detail the summary format or mention size limits, but given the low complexity, this is sufficient.

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?

With zero parameters, the schema coverage is trivially 100%. The description needs no parameter explanations, and the baseline for zero parameters is 4. The description adds no unnecessary parameter information.

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 tool 'Lists all API paths and their HTTP methods with summaries, organized by path.' This is a specific verb (list) with a specific resource (all API endpoints) and clearly differentiates from siblings like 'get-endpoint' (singular) and 'search-endpoints' (filtered).

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?

The description provides context for use by noting that results can be passed into 'get-endpoint', which implies a workflow for exploring endpoints. However, it does not explicitly contrast this with 'search-endpoints' or when to choose one over the other, so it is not a full 5.

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

pay-with-x402Pay With X402A
Read-only
Inspect

Before calling any Vybe endpoint without an API key (e.g. AI agent, throwaway script, premium-only path), use this to access the same endpoint via x402 pay-per-call USDC on Solana.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior1/5

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

The description claims a financial transaction ('pay-per-call USDC') while annotations declare readOnlyHint: true, implying no side effects. This is a direct contradiction. The annotation's read-only hint would mislead an agent into thinking no payment occurs, conflicting with the clear payment intent.

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?

The description is a single sentence, front-loaded with the usage condition, and every clause adds value. No redundancy or filler.

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

Completeness2/5

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

The description lacks critical context: it does not state what the tool returns after payment (no output schema exists), nor how the tool knows which endpoint to pay for given zero parameters. An agent cannot determine the next step after calling this tool. The contradiction with readOnlyHint further degrades completeness.

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?

There are zero parameters, and the schema coverage is 100% (empty schema). The description does not need to explain parameter syntax, but it references 'the same endpoint' without clarifying how that endpoint is identified given the absence of parameters, which is a minor gap. Baseline for 0 params is 4.

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 tool's function: accessing Vybe endpoints via x402 pay-per-call USDC. It uses a specific verb ('use this to access') and a distinct mechanism (x402 pay-per-call), which differentiates it from sibling tools like execute-request or get-endpoint.

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

Usage Guidelines5/5

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

The description explicitly states when to use the tool: 'Before calling any Vybe endpoint without an API key', with examples (AI agent, throwaway script, premium-only path). It implicitly covers when not to use it (when you have an API key) by specifying the condition.

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

search-endpointsSearch API EndpointsA
Read-only
Inspect

Performs a deep search through paths, operations, and parameters to discover relevant API endpoints. Use this tool to find specific API capabilities, required parameters, or data models based on search keywords. Results can be passed directly into 'get-endpoint'.

ParametersJSON Schema
NameRequiredDescriptionDefault
patternYesSearch pattern (case-insensitive)
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds useful scope context (searches through paths, operations, and parameters) and the behavioral trait that results are compatible with get-endpoint. This goes beyond the annotations without contradicting them.

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 that front-load the purpose and then provide usage guidance. No fluff, every sentence earns its place.

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

Completeness4/5

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

For a simple single-parameter search tool with readOnlyHint and a clear handoff to get-endpoint, the description is adequately complete. It does not specify the return format, but the mention of passing results to get-endpoint implies a structure, and no output schema is expected for such a discovery 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?

Schema coverage is 100% for the single parameter 'pattern', and the description's mention of 'search keywords' aligns with but does not elaborate beyond the schema. The schema already documents case-insensitivity, so no additional semantic value is provided here.

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 uses a specific verb ('Performs a deep search') and identifies the resource ('API endpoints') and scope ('paths, operations, and parameters'). It clearly differentiates from sibling tools like list-endpoints (which likely enumerates) and get-endpoint (which retrieves a single endpoint).

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?

States when to use the tool ('to find specific API capabilities, required parameters, or data models based on search keywords') and provides a natural follow-up action ('Results can be passed directly into get-endpoint'). It lacks explicit exclusions or alternatives, but the use case is clear enough for an agent to distinguish from sibling tools.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    -
    quality
    D
    maintenance
    Solana on-chain intelligence API — token scans, wallet PnL, bundle detection, fresh wallets, dev profiling. MCP server for Claude, Cursor & AI agents. Live PumpFun/Raydium streams
    1
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables Solana wallet forensics via MCP, including tracing funds, identifying entities, scoring risk, and comparing wallets using Helius APIs.
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.