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
/** Agent ID (short local or full published format) */
84
+
agentId: string
85
+
}
86
+
77
87
/**
78
88
* Fetch up-to-date documentation for libraries and frameworks using Context7 API.
79
89
*/
80
90
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. */
91
+
/** 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
92
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. */
93
+
/** Specific topic to focus on (e.g., "routing", "hooks", "authentication") */
94
+
topic: string
95
+
/** 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.
142
+
* 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.
Retrieve information about an agent by ID for proper spawning. Use this when you see a request with a full agent ID like "@publisher/agent-id@version" to validate the agent exists and get its metadata. Only agents that are published under a publisher and version are supported for this tool.
0 commit comments