22 lines
976 B
JavaScript
22 lines
976 B
JavaScript
// Test script to verify MCP tools integration
|
|
console.log("Testing MCP tools integration in Claude Desktop...");
|
|
|
|
// This file can be used to test if the MCP tools are working properly
|
|
// Once Claude Desktop is restarted, you should be able to use commands like:
|
|
// - Reading files
|
|
// - Writing files
|
|
// - Searching code
|
|
// - Running commands
|
|
// - Managing todos
|
|
// - And more...
|
|
|
|
console.log("MCP server configuration has been added to Claude Desktop.");
|
|
console.log("Please restart Claude Desktop to activate the new MCP server.");
|
|
console.log("\nAvailable tool categories:");
|
|
console.log("- File System: read, write, edit, multi_edit, directory_tree");
|
|
console.log("- Search: grep, search, unified_search");
|
|
console.log("- Shell: run_command, bash");
|
|
console.log("- Development: todo_read, todo_write, think");
|
|
console.log("- Configuration: read_rules, update_rules");
|
|
console.log("- Web: web_fetch");
|
|
console.log("\nTest the integration by asking me to read this file!"); |