You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`repo`| yes | The name of the repository to list commits for. |
200
+
|`query`| no | Search query to filter commits by message content (case-insensitive). |
201
+
|`since`| no | Show commits more recent than this date. Supports ISO 8601 (e.g., '2024-01-01') or relative formats (e.g., '30 days ago'). |
202
+
|`until`| no | Show commits older than this date. Supports ISO 8601 (e.g., '2024-12-31') or relative formats (e.g., 'yesterday'). |
203
+
|`author`| no | Filter commits by author name or email (case-insensitive). |
204
+
|`ref`| no | Commit SHA, branch or tag name to list commits of. If not provided, uses the default branch. |
205
+
|`page`| no | Page number for pagination (min 1, default: 1). |
206
+
|`perPage`| no | Results per page for pagination (min 1, max 100, default: 50). |
207
+
208
+
209
+
### `ask_codebase`
168
210
169
-
Fetches the source code for a given file.
211
+
Ask a natural language question about the codebase. This tool uses an AI agent to autonomously search code, read files, and find symbol references/definitions to answer your question. Returns a detailed answer in markdown format with code references, plus a link to view the full research session in the Sourcebot web UI.
Copy file name to clipboardExpand all lines: packages/mcp/README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -234,6 +234,20 @@ Get a list of commits for a given repository.
234
234
235
235
</details>
236
236
237
+
### ask_codebase
238
+
239
+
Ask a natural language question about the codebase. This tool uses an AI agent to autonomously search code, read files, and find symbol references/definitions to answer your question. Returns a detailed answer in markdown format with code references, plus a link to view the full research session in the Sourcebot web UI.
0 commit comments