Skip to main content
Glama
JussCubs

mcp-server-test

by JussCubs

Vector GraphQL MCP Server

This MCP server provides tools for querying the Vector GraphQL API:

  • fetch_leaderboard: Get Vector leaderboard data

  • fetch_profile: Get detailed trader profile data

  • fetch_token_data: Get trending Solana tokens

  • fetch_token_broadcasts: Get broadcasts for a specific token

Setup

# Clone the repository
git clone https://github.com/JussCubs/mcp-server-test.git
cd mcp-server-test

# Install dependencies with uv
uv add "mcp[cli]" httpx

If you don't have uv installed, you can install it following the instructions at https://github.com/astral-sh/uv.

Alternatively, you can use pip:

pip install -r requirements.txt

Related MCP server: mcp-server-cloudbrowser

Usage

# Run in development mode with the MCP Inspector
uv run mcp dev vector_server.py

# OR if you're using pip
mcp dev vector_server.py

# Install in Claude Desktop
uv run mcp install vector_server.py

# OR if you're using pip
mcp install vector_server.py

Troubleshooting

If you see a warning like The package 'mcp==X.X.X' does not have an extra named 'cli', you may need to install the CLI tools separately:

pip install mcp httpx "click>=8.0" "rich>=10.0" "typer>=0.9.0"

Tool Documentation

fetch_leaderboard

Fetches Vector leaderboard data:

  • leaderboard_type: The type of leaderboard (default: 'PNL_WIN')

fetch_profile

Fetches detailed profile data for a Vector trader:

  • username: Vector username to fetch

fetch_token_data

Fetches trending Solana tokens from Vector. This tool has no parameters and returns trending tokens with 5-minute broadcast activity.

fetch_token_broadcasts

Fetches broadcasts for a specific token:

  • token_id: Vector token ID

Available Tools

4 tools
fetch_leaderboardB

Fetch Vector leaderboard data

Args:
    leaderboard_type: Type of leaderboard (e.g., 'PNL_WIN', 'TRADE_VOLUME')
    
Returns:
    JSON string with leaderboard data
ParametersJSON Schema
NameRequiredDescriptionDefault
leaderboard_typeNoPNL_WIN

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states that the tool fetches data and returns JSON, but does not mention any side effects, permissions, error handling, or rate limits. The description adds minimal behavioral context beyond the basic fetch operation.

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 extremely concise, with only 5 lines front-loading the core purpose. Every sentence serves a clear function: stating the purpose, listing the parameter, and noting the return format. No waste.

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?

Given the tool's simplicity (1 parameter, returns JSON string) and the presence of an output schema, the description provides sufficient context to understand the tool's function and parameter. It lacks only minor context about the nature of leaderboard data or expected usage scenarios, but remains largely complete.

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 schema has 0% description coverage, so the description's explanation ('Type of leaderboard (e.g., 'PNL_WIN', 'TRADE_VOLUME')') adds value beyond the schema. However, it does not enumerate all possible values or constraints, leaving ambiguity about valid inputs.

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 'Fetch' and the resource 'Vector leaderboard data', distinguishing it from sibling tools like fetch_profile and fetch_token_data. The purpose is immediately understandable.

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 alternatives such as fetch_profile or fetch_token_data. There is no mention of prerequisites, context, or exclusions.

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

fetch_profileB

Fetch detailed profile data for a Vector trader

Args:
    username: Vector username to fetch
    
Returns:
    JSON string with profile data
ParametersJSON Schema
NameRequiredDescriptionDefault
usernameYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description must disclose behavioral traits. It only indicates a read operation (fetch) and returns JSON string, but lacks information on authentication, rate limits, error handling, or whether the action is safe.

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 short and front-loaded with the purpose. It uses a standard docstring format with Args/Returns, which is efficient, though it could integrate the parameter hint into the main sentence.

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?

The description covers the single parameter and states the return type (JSON string with profile data). However, it does not detail the output structure or any edge cases, which would be helpful given the output schema exists.

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 has 0% description coverage, so the description compensates by stating that 'username' is a 'Vector username'. This adds meaning beyond the schema's 'string' type, but does not specify format or constraints.

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 fetches detailed profile data for a Vector trader, specifying the resource and action. It is distinct from sibling tools (fetch_leaderboard, fetch_token_broadcasts, fetch_token_data) as it focuses on user profiles.

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 versus alternatives or when not to use it. The description does not mention any prerequisites or context such as requiring the trader to exist.

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

fetch_token_broadcastsB

Fetch broadcasts for a specific token

Args:
    token_id: Vector token ID
    
Returns:
    JSON string with token broadcasts
ParametersJSON Schema
NameRequiredDescriptionDefault
token_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations provided, the description must disclose behavioral traits. It states the return format ('JSON string with token broadcasts'), which adds context beyond the schema. However, it does not explicitly confirm that it is read-only, nor does it mention any side effects, authorization needs, or rate limits. The term 'Fetch' implies a safe read operation, but explicit confirmation would improve transparency.

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 short and concise, with the main purpose front-loaded. It uses a clear structure with separate lines for parameters and returns. The length is appropriate for a simple tool with one parameter.

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?

Given the tool's low complexity (one parameter, output schema exists), the description covers the essential aspects: what it does, the parameter, and the return type. The output schema is assumed to detail the return structure, so the description need not elaborate further. It is sufficiently complete for its context.

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

Parameters2/5

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

The input schema has 0% description coverage for parameters. The description adds minimal meaning by stating 'token_id: Vector token ID', which specifies the type of token ID. However, it does not explain what a 'Vector token ID' is, nor does it provide examples or constraints beyond the schema. With such low coverage, the description should compensate more.

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 that the tool fetches broadcasts for a specific token, using a specific verb ('Fetch') and resource ('broadcasts'). It distinguishes itself from siblings like 'fetch_leaderboard', 'fetch_profile', and 'fetch_token_data' by focusing on broadcasts.

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?

The description provides no guidance on when to use this tool vs. alternatives. It does not mention any context, prerequisites, or scenarios where this tool is preferable. The usage is only implied by the tool name and description.

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

fetch_token_dataA

Fetch trending Solana tokens from Vector

Returns:
    JSON string with token data
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It states 'Fetch' implying read-only and mentions return type (JSON string), which is adequate for a simple tool. Could add more context like rate limits or auth, but not necessary.

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 extremely concise: two lines, front-loaded with the main action and outcome. No redundant information.

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?

Given the tool's simplicity (0 parameters, no annotations, has output schema), the description fully covers what an agent needs: what it does and what it returns. No missing details for its complexity level.

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 the baseline score is 4 per rubric. Description adds no parameter info, but that is acceptable since there are none.

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 'Fetch' and the resource 'trending Solana tokens from Vector', distinguishing it from sibling tools like fetch_leaderboard and fetch_profile.

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 fetching token data, but lacks explicit guidance on when to use this tool versus alternatives (e.g., fetch_token_broadcasts). No when-not or exclusions 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. 4 tool updatesv0.1.0
    • First observedfetch_leaderboard
    • First observedfetch_profile
    • First observedfetch_token_broadcasts
    • First observedfetch_token_data

TDQS

A3.7/5.0
Disambiguation5/5

Each tool has a unique purpose: leaderboard, profile, token broadcasts, and token data. There is no overlap between fetching different data types.

Naming Consistency5/5

All tools follow a consistent 'fetch_' prefix with descriptive nouns (leaderboard, profile, token_broadcasts, token_data) in snake_case.

Tool Count4/5

4 tools is a reasonable number for a focused data retrieval server. It covers key endpoints without being excessive or too sparse.

Completeness4/5

The set covers major data categories for a trading platform (leaderboard, profile, token info, broadcasts). Missing details like token price or history, but sufficient for common queries.

Maintenance

ActivityInactive
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

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/JussCubs/mcp-server-test'

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