get-installation-settings
Retrieve and manage installation settings for MCP servers, enabling streamlined configuration and setup of environment variables and package installations.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/installation-tools.ts:234-251 (registration)Registration of the 'get-installation-settings' tool, including its inline handler. The handler retrieves the installation configuration from configService and returns the packageManager settings as a JSON text response.server.tool( "get-installation-settings", {}, async (_, extra) => { const config = configService.getInstallationConfig(); return { content: [ { type: "text", text: JSON.stringify({ packageManager: config.packageManager }, null, 2) } ] }; } );