Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 10 additions & 17 deletions docs/agent-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,26 +219,19 @@ Optionally, you can also prefix native tools with the namespace `@builtin`.
```json
{
"allowedTools": [
// Exact matches
"fs_read",
"knowledge",
"@server/specific_tool",

// Native tool wildcards
"fs_*", // All filesystem tools
"execute_*", // All execute tools
"*_test", // Any tool ending in _test
@builtin, // All native tools

// MCP tool wildcards
"@server/api_*", // All API tools from server
"@server/read_*", // All read tools from server
"@git-server/get_*_info", // Tools like get_user_info, get_repo_info
"@*/status", // Status tool from any server

// Server-level permissions
"@fetch", // All tools from fetch server
"@git-*" // All tools from any git-* server
"fs_*",
"execute_*",
"*_test",
"@builtin",
"@server/api_*",
"@server/read_*",
"@git-server/get_*_info",
"@*/status",
"@fetch",
"@git-*"
]
}
```
Expand Down