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
/**
* Request handlers for Export tools
*/
export const exportOverleafHandler = async (params) => {
return {
method: 'export_overleaf',
params
};
};
export const exportGithubHandler = async (params) => {
return {
method: 'export_github',
params
};
};
export const exportZenodoHandler = async (params) => {
return {
method: 'export_zenodo',
params
};
};
export const exportJupyterHandler = async (params) => {
return {
method: 'export_jupyter',
params
};
};
export const exportVRHandler = async (params) => {
return {
method: 'plot_vr_export',
params
};
};