-
Notifications
You must be signed in to change notification settings - Fork 431
Minor fixes 0821 #1385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Minor fixes 0821 #1385
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
ac7df0c
added edit button to the transcript bar
duckduckhero 23be7c0
added hyprmcp tool calls
duckduckhero c93bcf4
integrated hypr mcp tools
duckduckhero 581bdbe
ran tests
duckduckhero 117d908
Merge branch 'main' of https://github.com/fastrepl/hyprnote into mino…
duckduckhero 1a8902c
fixed empty chat state bug
duckduckhero File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
apps/desktop/src/components/right-panel/utils/mcp-http-wrapper.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| import { dynamicTool, jsonSchema } from "@hypr/utils/ai"; | ||
| import { Client } from "@modelcontextprotocol/sdk/client"; | ||
| import { z } from "zod"; | ||
|
|
||
| export async function buildVercelToolsFromMcp(client: Client) { | ||
| const { tools: mcpTools } = await client.listTools(); | ||
|
|
||
| const vercelTools: Record<string, ReturnType<typeof dynamicTool>> = {}; | ||
|
|
||
| for (const mcpTool of mcpTools) { | ||
| const schema = mcpTool.inputSchema | ||
| ? jsonSchema(mcpTool.inputSchema as any) | ||
| : z.any(); | ||
|
|
||
| vercelTools[mcpTool.name] = dynamicTool({ | ||
| description: mcpTool.description || (mcpTool as any).title || `Tool: ${mcpTool.name}`, | ||
| inputSchema: schema, | ||
|
|
||
| execute: async (args: unknown) => { | ||
| const result = await client.callTool({ | ||
| name: mcpTool.name, | ||
| arguments: (args ?? undefined) as Record<string, unknown> | undefined, | ||
| }); | ||
|
|
||
| return result.content; | ||
| }, | ||
| }); | ||
| } | ||
|
|
||
| return vercelTools; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.