List and filter organizations in the National Data Platform
Lists organizations in the National Data Platform with optional filtering by name and server.
/plugin marketplace add SIslamMun/iowarp-plugin/plugin install ndp-plugin@iowarp-pluginsList all organizations contributing data to the National Data Platform.
This command provides access to organization discovery functionality through the NDP MCP.
list_organizationsLists all organizations in NDP with optional filtering:
Parameters:
'global' (default) - Public global NDP server'local' - Local/institutional NDP server'pre_ckan' - Pre-production serverReturns: List of organization names and metadata including:
"List all organizations in the National Data Platform"
Uses: list_organizations() - No filter, returns all organizations
"Show me all organizations with 'climate' in their name"
Uses: list_organizations(name_filter="climate")
"Compare organizations on global and local servers"
Uses: list_organizations(server="global") and list_organizations(server="local")
"Find organizations related to oceanographic research"
Uses: list_organizations(name_filter="ocean") and list_organizations(name_filter="marine")
search_datasetsUser: "List all organizations available on the local NDP server"
Claude uses: list_organizations(server="local")
Result: Complete list of local organizations with count
User: "Find organizations related to satellite data"
Claude uses: list_organizations(name_filter="satellite")
Result: Organizations with "satellite" in their name
User: "Show me organizations working on Earth observation"
Claude uses:
- list_organizations(name_filter="earth")
- list_organizations(name_filter="observation")
Result: Combined results from both searches
User: "I want to search for NOAA climate data"
Claude uses: list_organizations(name_filter="noaa")
Result: Exact NOAA organization name(s)
Then: Can proceed with search_datasets(owner_org="<verified_name>")