MCPcopy Create free account
hub / github.com/adcontextprotocol/adcp / getAllTools

Function getAllTools

server/src/mcp/server.ts:78–89  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

76 * Knowledge and billing tools are NOT exposed - use chat_with_addie instead.
77 */
78export function getAllTools() {
79 const chatTool = convertToMCPTool(CHAT_TOOL);
80 const directoryTools = TOOL_DEFINITIONS;
81 const exposedTools = ALL_EXPOSED_TOOL_DEFINITIONS;
82
83 return {
84 directory: directoryTools,
85 exposed: exposedTools,
86 chat: chatTool,
87 all: [chatTool, ...directoryTools, ...exposedTools],
88 };
89}
90
91/**
92 * Create all tool handlers

Callers 1

createUnifiedMCPServerFunction · 0.85

Calls 1

convertToMCPToolFunction · 0.85

Tested by

no test coverage detected