We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6879923 commit af3eb35Copy full SHA for af3eb35
src/mcp-server.ts
@@ -83,6 +83,7 @@ export class ActorsMcpServer {
83
* @returns {object} - The response object containing the tools.
84
*/
85
this.server.setRequestHandler(ListToolsRequestSchema, async () => {
86
+ // TODO if there is actor-mcp as a tool, also list the tools from that Actor
87
const tools = Array.from(this.tools.values()).map((tool) => (tool.tool));
88
return { tools };
89
});
0 commit comments