Commit 2b5e619

mo khan <mo@mokhan.ca>
2025-08-14 23:42:20
feat: remove name and description from resources
1 parent 2f82819
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)