We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/laurigates/foundryvtt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•778 B
/**
* Tools module entry point
*/
// Export tool and resource definitions
export { getAllTools } from './definitions.js';
export * from './handlers/actors.js';
export * from './handlers/chat.js';
export * from './handlers/combat.js';
export * from './handlers/diagnostics.js';
// Export individual handlers for testing
export * from './handlers/dice.js';
export * from './handlers/generation.js';
export * from './handlers/items.js';
export * from './handlers/journals.js';
export * from './handlers/resources.js';
export * from './handlers/scenes.js';
export * from './handlers/users.js';
export * from './handlers/world.js';
export { getAllResources } from './resources.js';
// Export routing functions
export { routeResourceRequest, routeToolRequest } from './router.js';