@cubie-ai/solana-mcp - v1.3.2
    Preparing search index...

    Interface SolanaMCPServerConfig<T>

    Parameters for starting the MCP server.

    interface SolanaMCPServerConfig<T extends ContextConfig> {
        context: T;
        name?: string;
        tools?: ServerToolConfig<T>[];
        transport:
            | StdioServerTransport
            | SSEServerTransport
            | StreamableHTTPServerTransport;
        version?: string;
    }

    Type Parameters

    Hierarchy

    • BaseMCPConfig
      • SolanaMCPServerConfig
    Index

    Properties

    context: T

    The configuration for the server. This includes the Solana RPC URL, WebSocket URL, and commitment level.

    name?: string

    The name of the server. Defaults to "Solana MCP Server".

    tools?: ServerToolConfig<T>[]

    A map of tools to bind to the server. Providing the name of any built-in tools will allow them to be registered with the server.

    transport:
        | StdioServerTransport
        | SSEServerTransport
        | StreamableHTTPServerTransport

    The transport mechanism to use for the server. Can be either StdioServerTransport or SSEServerTransport.

    version?: string

    The version of the server. Defaults to "1.0.0".