Skip to main content
Glama

Physics MCP Server

by BlinkZer0
handlers.ts809 B
/** * Request handlers for Export tools */ // Simple handler type since we're using direct function calls export type ToolHandler = (params: any) => Promise<any>; export const exportOverleafHandler: ToolHandler = async (params) => { return { method: 'export_overleaf', params }; }; export const exportGithubHandler: ToolHandler = async (params) => { return { method: 'export_github', params }; }; export const exportZenodoHandler: ToolHandler = async (params) => { return { method: 'export_zenodo', params }; }; export const exportJupyterHandler: ToolHandler = async (params) => { return { method: 'export_jupyter', params }; }; export const exportVRHandler: ToolHandler = async (params) => { return { method: 'plot_vr_export', params }; };

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/BlinkZer0/Phys-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server