Commit 2b5e619
Changed files (1)
pkg
filesystem
pkg/filesystem/server.go
@@ -352,10 +352,9 @@ func (fs *Server) discoverProgrammingFiles(dirPath string) []mcp.Resource {
relPath, _ := filepath.Rel(dirPath, path)
resource := mcp.Resource{
- URI: fileURI,
- Name: relPath,
- Description: fmt.Sprintf("Programming file: %s", relPath),
- MimeType: mimeType,
+ URI: fileURI,
+ Name: relPath,
+ MimeType: mimeType,
}
resources = append(resources, resource)