We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cacc3bc commit 97519d3Copy full SHA for 97519d3
README.md
@@ -206,16 +206,18 @@ server.registerTool(
206
{ type: "text", text: `Found files matching "${pattern}":` },
207
// ResourceLinks let tools return references without file content
208
{
209
- type: "resource_link" as const,
+ type: "resource_link",
210
uri: "file:///project/README.md",
211
name: "README.md",
212
- mimeType: "text/markdown"
+ mimeType: "text/markdown",
213
+ description: 'A README file'
214
},
215
216
217
uri: "file:///project/src/index.ts",
218
name: "index.ts",
- mimeType: "text/typescript"
219
+ mimeType: "text/typescript",
220
+ description: 'An index file'
221
}
222
]
223
})
0 commit comments