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
* Fetch up-to-date documentation for libraries and frameworks using Context7 API.
79
79
*/
80
80
exportinterfaceReadDocsParams{
81
-
/** The exact library or framework name (e.g., "Next.js", "MongoDB", "React"). Use the official name as it appears in documentation, not a search query. */
81
+
/** The library or framework name (e.g., "Next.js", "MongoDB", "React"). Use the official name as it appears in documentation if possible. Only public libraries available in Context7's database are supported, so small or private libraries may not be available. */
82
82
libraryTitle: string
83
-
/** Optional specific topic to focus on (e.g., "routing", "hooks", "authentication") */
84
-
topic?: string
85
-
/** Optional maximum number of tokens to return. Defaults to 10000. Values less than 10000 are automatically increased to 10000. */
83
+
/** Specific topic to focus on (e.g., "routing", "hooks", "authentication") */
84
+
topic: string
85
+
/** Optional maximum number of tokens to return. Defaults to 20000. Values less than 10000 are automatically increased to 10000. */
* Spawn multiple agents and send a prompt to each of them.
132
+
* Spawn multiple agents and send a prompt and/or parameters to each of them. These agents will run in parallel. Note that that means they will run independently. If you need to run agents sequentially, use spawn_agents with one agent at a time instead.
`Optional working directory to search within, relative to the project root. Defaults to searching the entire project.`,
27
27
),
28
+
maxResults: z
29
+
.number()
30
+
.int()
31
+
.positive()
32
+
.optional()
33
+
.default(30)
34
+
.describe(`Maximum number of results to return. Defaults to 30.`),
28
35
})
29
36
.describe(
30
37
`Search for string patterns in the project's files. This tool uses ripgrep (rg), a fast line-oriented search tool. Use this tool only when read_files is not sufficient to find the files you need.`,
0 commit comments