Skip to content

Commit cb37ca8

Browse files
Update prompt (#3)
1 parent c7df230 commit cb37ca8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "linkup-mcp-server",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "'Linkup MCP server'",
55
"types": "build/index.d.ts",
66
"bin": {

src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ export const parseArgs = (args: OptionValues): Args => {
5151
const bindTool = (server: McpServer, linkupClient: LinkupClient) => {
5252
server.tool(
5353
'search-web',
54-
'Performs a search for user input query using Linkup sdk then returns a string of the top search results. Should be used to search real-time data.',
54+
'Performs an online search using Linkup search engine and retrieves the top results as a string. This function is useful for accessing real-time information, including news, articles, and other relevant web content.',
5555
{
5656
query: z.string().describe('The search query to perform.'),
5757
depth: z
5858
.enum(['standard', 'deep'])
5959
.describe(
60-
'The depth of the search. Deep search is time consuming and expensive, use it wisely.',
60+
"The search depth to perform. Use 'standard' for straightforward queries with likely direct answers (e.g., facts, definitions, simple explanations). Use 'deep' for: 1) complex queries requiring comprehensive analysis or information synthesis, 2) queries containing uncommon terms, specialized jargon, or abbreviations that may need additional context, or 3) questions likely requiring up-to-date or specialized web search results to answer effectively.",
6161
),
6262
},
6363
async ({ query, depth }) =>

0 commit comments

Comments
 (0)