Solana MCP by Vybe
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.
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.
Tool Definition Quality
Average 3.8/5 across 5 of 5 tools scored.
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.
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.
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.
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 toolsexecute-requestExecute API RequestCDestructiveInspect
Executes an API request with a given HAR request object.
| Name | Required | Description | Default |
|---|---|---|---|
| harRequest | Yes | HAR request object |
Tool Definition Quality
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.
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.
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.
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.
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.
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 DetailsARead-onlyInspect
Gets detailed information about a specific API endpoint, including security schemes and servers
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | The API endpoint path (e.g. /api/v1/users). | |
| method | Yes | The HTTP method (e.g. GET, POST, PUT, DELETE). |
Tool Definition Quality
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.
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.
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.
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.
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.
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 EndpointsARead-onlyInspect
Lists all API paths and their HTTP methods with summaries, organized by path. Results can be passed directly into 'get-endpoint'.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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 X402ARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
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.
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.
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.
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.
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.
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 EndpointsARead-onlyInspect
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'.
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes | Search pattern (case-insensitive) |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityDmaintenanceSolana on-chain intelligence API — token scans, wallet PnL, bundle detection, fresh wallets, dev profiling. MCP server for Claude, Cursor & AI agents. Live PumpFun/Raydium streams1MIT
- Alicense-qualityDmaintenanceEnables Solana wallet forensics via MCP, including tracing funds, identifying entities, scoring risk, and comparing wallets using Helius APIs.MIT
- AlicenseAqualityFmaintenanceReal-time Solana token risk scoring, momentum signals, and graduation alerts via MCP. Free tier with 4 tools (no auth), PRO tier with 6 tools + batch analysis ($0.01/call via x402).61MIT
- Alicense-qualityDmaintenanceEnables AI agents to interact with the Solana blockchain through MCP, supporting wallet queries, token swaps via Jupiter, token transfers, and market data.MIT
Your Connectors
Sign in to create a connector for this server.