Skip to content
Merged
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
7 changes: 4 additions & 3 deletions docs/CONFIGURATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,9 +160,10 @@ Run `./awmg --help` for full CLI options. Key flags:
}
```

- **`tools`** (optional): List of tool names intended to be exposed from this server
- **Note**: This field is stored but not currently enforced at runtime; all tools from the backend are always exposed regardless of this value
- Example: `["get_file_contents", "search_code"]`
- **`tools`** (optional): List of tool names to allow for this server
- Enforced at runtime: tools not in this list are hidden from `tools/list` responses and rejected when invoked via `tools/call` (for example, as an MCP/tool error)
- Use `["*"]` (wildcard) to allow all tools (default behavior when field is omitted)
- Example: `["get_file_contents", "search_code"]` (only these tools are accessible)

- **`registry`** (optional): Informational URI to the server's entry in an MCP registry
- Used for documentation and discoverability purposes only; not used at runtime
Expand Down
Loading