localize-mcp-server
Manage and configure MCP server environments by specifying configuration paths, server names, and package names for streamlined local setup and installation.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
configPath | Yes | Path to configuration file | |
packageName | Yes | Package name to use | |
serverName | Yes | Name of the server in the configuration |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"configPath": {
"description": "Path to configuration file",
"type": "string"
},
"packageName": {
"description": "Package name to use",
"type": "string"
},
"serverName": {
"description": "Name of the server in the configuration",
"type": "string"
}
},
"required": [
"configPath",
"serverName",
"packageName"
],
"type": "object"
}