rap2_search_interfaces_by_path
Search API interfaces by request path to find specific endpoints and their documentation details, optionally filtering by repository.
Instructions
按请求路径搜索接口(可选限定仓库)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
path | Yes | 请求路径(如:/api/users) | |
repositoryId | No | 仓库 ID(可选,传入字符串) |
Input Schema (JSON Schema)
{
"properties": {
"path": {
"description": "请求路径(如:/api/users)",
"type": "string"
},
"repositoryId": {
"description": "仓库 ID(可选,传入字符串)",
"type": "string"
}
},
"required": [
"path"
],
"type": "object"
}