MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / RpcError

Class RpcError

graph-ui/src/api/rpc.ts:5–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3let _nextId = 1;
4
5export class RpcError extends Error {
6 constructor(
7 public code: number,
8 message: string,
9 ) {
10 super(message);
11 this.name = "RpcError";
12 }
13}
14
15export async function callTool<T = unknown>(
16 name: string,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected