We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rdwj/fda-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•717 B
"""
Resources package for the MCP server.
Resource modules are automatically discovered and loaded by src/core/loaders.py.
To add a new resource:
1. Create a new .py file in this directory or any subdirectory
Example: resources/country_profiles/japan.py
2. Import mcp from core.app: from core.app import mcp
3. Define your resource function with @mcp.resource() decorator
4. The loader will automatically discover and import it
To remove a resource:
1. Simply delete the .py file
Subdirectories are supported and encouraged for organizing related resources.
Examples:
- resources/country_profiles/japan.py
- resources/checklists/first_international_trip.py
- resources/emergency_protocols/passport_lost.py
"""