being mcp server for VS Code
com.ruddia/being-mcp-server
Personality Runtime for AI agents — persistent memory, personality, and relationships via MCP
client:VS Code
transport:stdio
runtime:npm
Install being mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "being-api-url",
"description": "BEING_API_URL",
"password": true
},
{
"type": "promptString",
"id": "being-api-token",
"description": "BEING_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "being-id",
"description": "BEING_ID",
"password": true
},
{
"type": "promptString",
"id": "llm-api-key",
"description": "LLM_API_KEY",
"password": true
}
],
"servers": {
"being-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ruddia/being-mcp-server"
],
"env": {
"BEING_API_URL": "${input:being-api-url}",
"BEING_API_TOKEN": "${input:being-api-token}",
"BEING_ID": "${input:being-id}",
"LLM_API_KEY": "${input:llm-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs