laviya agent skills for VS Code
io.github.kartegagithub/laviya-agent-skills
Laviya AI Orchestration MCP runtime for IDE and agent integrations.
client:VS Code
transport:stdio
runtime:npm
Install laviya agent skills in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "laviya-api-key",
"description": "LAVIYA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "laviya-base-url",
"description": "LAVIYA_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "laviya-agent-uid",
"description": "LAVIYA_AGENT_UID",
"password": true
},
{
"type": "promptString",
"id": "laviya-log-level",
"description": "LAVIYA_LOG_LEVEL",
"password": true
},
{
"type": "promptString",
"id": "laviya-global-config-path",
"description": "LAVIYA_GLOBAL_CONFIG_PATH",
"password": true
}
],
"servers": {
"laviya-agent-skills": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"laviya-mcp-server"
],
"env": {
"LAVIYA_API_KEY": "${input:laviya-api-key}",
"LAVIYA_BASE_URL": "${input:laviya-base-url}",
"LAVIYA_AGENT_UID": "${input:laviya-agent-uid}",
"LAVIYA_LOG_LEVEL": "${input:laviya-log-level}",
"LAVIYA_GLOBAL_CONFIG_PATH": "${input:laviya-global-config-path}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs