- Add grep_app MCP configuration (https://mcp.grep.app) - Update explore agent with grep_app usage guide: - Always launch 5+ grep_app calls with query variations - Always add 2+ other search tools for verification - grep_app is fast but potentially outdated, use as starting point only - Update README.md and README.ko.md with grep_app documentation 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
25 lines
677 B
TypeScript
25 lines
677 B
TypeScript
import { websearch_exa } from "./websearch-exa"
|
|
import { context7 } from "./context7"
|
|
import { grep_app } from "./grep-app"
|
|
import type { McpName } from "./types"
|
|
|
|
export { McpNameSchema, type McpName } from "./types"
|
|
|
|
const allBuiltinMcps: Record<McpName, { type: "remote"; url: string; enabled: boolean }> = {
|
|
websearch_exa,
|
|
context7,
|
|
grep_app,
|
|
}
|
|
|
|
export function createBuiltinMcps(disabledMcps: McpName[] = []) {
|
|
const mcps: Record<string, { type: "remote"; url: string; enabled: boolean }> = {}
|
|
|
|
for (const [name, config] of Object.entries(allBuiltinMcps)) {
|
|
if (!disabledMcps.includes(name as McpName)) {
|
|
mcps[name] = config
|
|
}
|
|
}
|
|
|
|
return mcps
|
|
}
|