We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RioTheGreat-ai/agentfund-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
provider-ipcsocket.d.ts•783 B
/// <reference types="node" />
import { SocketProvider } from "./provider-socket.js";
import type { Socket } from "net";
import type { JsonRpcApiProviderOptions } from "./provider-jsonrpc.js";
import type { Networkish } from "./network.js";
/**
* An **IpcSocketProvider** connects over an IPC socket on the host
* which provides fast access to the node, but requires the node and
* the script run on the same machine.
*/
export declare class IpcSocketProvider extends SocketProvider {
#private;
/**
* The connected socket.
*/
get socket(): Socket;
constructor(path: string, network?: Networkish, options?: JsonRpcApiProviderOptions);
destroy(): void;
_write(message: string): Promise<void>;
}
//# sourceMappingURL=provider-ipcsocket.d.ts.map