// 'exact' - Only this exact tool with these exact arguments// User approves: postgres:query with args { sql: "SELECT * FROM users" }// Matches: postgres:query with args { sql: "SELECT * FROM users" }// Does NOT match: postgres:query with args { sql: "SELECT * FROM orders" }
Copy
// 'tool' - Any call to this tool on this server// User approves: postgres:query// Matches: postgres:query with ANY args
Copy
// 'server' - Any tool call on this server// User approves: postgres// Matches: postgres:query, postgres:execute, postgres:list_tables, etc.
Copy
// 'pattern' - Tools matching a glob pattern on this server// User approves: postgres with pattern "read_*"// Matches: postgres:read_file, postgres:read_config// Does NOT match: postgres:write_file