We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ProfSynapse/nexus'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
config.ts•596 B
/**
* Plugin configuration
*/
export const CONFIG = {
/**
* Plugin name
*/
PLUGIN_NAME: 'Nexus',
/**
* Plugin version
*/
VERSION: '2.6.3',
/**
* Default port for the MCP server
*/
DEFAULT_PORT: 3001,
/**
* Default host for the MCP server
*/
DEFAULT_HOST: 'localhost',
/**
* Default timeout for requests (in milliseconds)
*/
DEFAULT_TIMEOUT: 1200000,
/**
* Maximum number of concurrent requests
*/
MAX_CONCURRENT_REQUESTS: 100
};