MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / get

Method get

src/tools/registry.ts:345–347  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

343
344 /** Remove every tool whose name starts with the given prefix. Returns count removed. */
345 unregisterByPrefix(prefix: string): number {
346 let count = 0;
347 for (const name of Array.from(this.tools.keys())) {
348 if (name.startsWith(prefix)) {
349 this.tools.delete(name);
350 count++;

Callers 3

getSchemasMethod · 0.45
executeMethod · 0.45
isReadOnlyMethod · 0.45

Calls 1

resolveNameMethod · 0.95

Tested by

no test coverage detected