install_local_mcp_server
Set up an MCP server locally by specifying the path to server code, passing required arguments, and configuring environment variables for deployment.
Instructions
Install an MCP server from a local directory.
Args:
path: The path to the MCP server code cloned on your computer
args: The arguments to pass along
env: The environment variables to set, delimited by =
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | ||
env | No | ||
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"args": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Args"
},
"env": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Env"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"title": "install_local_mcp_serverArguments",
"type": "object"
}