We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zhangzhongnan928/mcp-pa-ai-agent'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* MCP PA Agent Modules
* This file exports all the function modules that will be exposed through the MCP server
*/
import calendarFunctions from './calendar/index.js';
import taskFunctions from './tasks/index.js';
import emailFunctions from './email/index.js';
import knowledgeFunctions from './knowledge/index.js';
import smartHomeFunctions from './smartHome/index.js';
// Combine all module functions
const allFunctions = [
...calendarFunctions,
...taskFunctions,
...emailFunctions,
...knowledgeFunctions,
...smartHomeFunctions
];
export default allFunctions;