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
- Update mcp-config.json with latest tool configurations
- Fix REPL imports and interactive mode handling
- Update banner display in CLI
- Update research-manager with latest improvements
These changes complete the CLI and configuration improvements.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: mcp-config.json
+28-3Lines changed: 28 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,34 @@
6
6
"input_patterns": ["create starter kit for {use_case}", "generate {type} project", "scaffold {application_type} app", "setup boilerplate for {project}"]
7
7
},
8
8
"research-manager": {
9
-
"description": "Performs in-depth research on technical topics, concepts, or comparisons using Perplexity Sonar.",
10
-
"use_cases": ["research", "comparison", "best practices", "explain concept", "technical deep dive", "learn about {topic}"],
11
-
"input_patterns": ["research {topic}", "compare {A} and {B}", "best practices for {domain}", "explain {concept}"]
9
+
"description": "Performs comprehensive research on any technical topic including frameworks, libraries, packages, tools, and best practices using Perplexity Sonar.",
10
+
"use_cases": [
11
+
"research {any topic}",
12
+
"find latest {technology} packages",
13
+
"explore {framework} ecosystem",
14
+
"investigate UI/UX libraries",
15
+
"discover CLI tools and frameworks",
16
+
"analyze development trends",
17
+
"compare {tool} alternatives",
18
+
"best practices for {domain}",
19
+
"explain {concept}",
20
+
"technical deep dive",
21
+
"learn about {topic}",
22
+
"research packages and libraries",
23
+
"investigate framework options"
24
+
],
25
+
"input_patterns": [
26
+
"research {topic}",
27
+
"perform research on {topic}",
28
+
"investigate {technology}",
29
+
"explore {framework}",
30
+
"find {library} alternatives",
31
+
"discover {tool} options",
32
+
"compare {A} and {B}",
33
+
"best practices for {domain}",
34
+
"explain {concept}",
35
+
"latest {technology} packages"
36
+
]
12
37
},
13
38
"prd-generator": {
14
39
"description": "Creates comprehensive Product Requirements Documents (PRDs) based on a feature or product description.",
// Tool definition for the research tool, using the raw shape
280
280
constresearchToolDefinition: ToolDefinition={
281
-
name: "research",// Keep the original tool name
282
-
description: "Performs deep research on a given topic using Perplexity Sonar and enhances the result.",
281
+
name: "research-manager",// Align with mcp-config.json and hybrid-matcher expectations
282
+
description: "Performs comprehensive research on any technical topic including frameworks, libraries, packages, tools, and best practices using Perplexity Sonar.",
283
283
inputSchema: researchInputSchemaShape,// Use the raw shape here
284
284
executor: performResearch// Reference the adapted function
0 commit comments