@stellarwp/learndash-mcp-server
Version:
A LearnDash MCP Server implementation
33 lines • 892 B
TypeScript
/**
* The friendly name of the plugin or application this MCP server is for.
*
* @const {string}
*/
export declare const APP_NAME = "LearnDash";
/**
* The name of the MCP Server to register.
* Should be lowercase using only dashes.
*
* @const {string}
*/
export declare const MCP_SERVER = "learndash-mcp";
/**
* The slug prefix to use for registration across the app.
*
* @const {string}
*/
export declare const APP_SLUG = "learndash";
/**
* The relative path to the wp-json/$namespace/$version for this plugin's REST API.
* Should start with a forward slash and no trailing slash.
*
* @const {string}
*/
export declare const REST_NAMESPACE = "/learndash/v1";
/**
* The endpoint to use to get the available endpoints for the MCP server to use
*
* @const {string}
*/
export declare const REST_SCHEMA = "/learndash/v1/docs/openapi";
//# sourceMappingURL=constants.d.ts.map