install_repo_mcp_server
Install an MCP server using pip or npm by specifying the package name, arguments, and environment variables. Simplifies server setup and configuration across platforms.
Instructions
Install an MCP server via pip or npm.
Args:
name: The package name of the MCP server
args: The arguments to pass along
env: The environment variables to set, delimited by =
Input Schema
Name | Required | Description | Default |
---|---|---|---|
args | No | ||
env | No | ||
name | 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"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"title": "install_repo_mcp_serverArguments",
"type": "object"
}