We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/safedep/vet'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
enrich.go•496 B
package scanner
import (
"github.com/safedep/vet/pkg/models"
)
// Callback to receive a discovery package dependency
type PackageDependencyCallbackFn func(pkg *models.Package) error
// Enrich meta information associated with
// the package
type PackageMetaEnricher interface {
// Name of the enricher
Name() string
// Enrich the package with meta information
Enrich(pkg *models.Package, cb PackageDependencyCallbackFn) error
// Wait for all the enrichments to complete
Wait() error
}