grep_docs
Search documents using regex patterns with case-insensitive options enabled by default. Integrates with the Docs-MCP server for efficient document retrieval and analysis.
Instructions
ドキュメント内をgrepで検索
Args:
pattern: 検索パターン(正規表現対応)
ignore_case: 大文字小文字を無視するか(デフォルト: True)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ignore_case | No | ||
pattern | Yes |
Input Schema (JSON Schema)
{
"properties": {
"ignore_case": {
"default": true,
"title": "Ignore Case",
"type": "boolean"
},
"pattern": {
"title": "Pattern",
"type": "string"
}
},
"required": [
"pattern"
],
"title": "grep_docsArguments",
"type": "object"
}