TypesenseKit for VS Code
io.github.akshitkrnagpal/typesensekit
95 typed Typesense operations for AI agents through an MCP server that is read-only by default.
client:VS Code
transport:stdio
runtime:npm
Install TypesenseKit in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "typesense-url",
"description": "TYPESENSE_URL",
"password": true
},
{
"type": "promptString",
"id": "typesense-api-key",
"description": "TYPESENSE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "typesensekit-read-only",
"description": "TYPESENSEKIT_READ_ONLY",
"password": true
},
{
"type": "promptString",
"id": "typesense-connection-timeout-seconds",
"description": "TYPESENSE_CONNECTION_TIMEOUT_SECONDS",
"password": true
}
],
"servers": {
"typesensekit": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@typesensekit/mcp"
],
"env": {
"TYPESENSE_URL": "${input:typesense-url}",
"TYPESENSE_API_KEY": "${input:typesense-api-key}",
"TYPESENSEKIT_READ_ONLY": "${input:typesensekit-read-only}",
"TYPESENSE_CONNECTION_TIMEOUT_SECONDS": "${input:typesense-connection-timeout-seconds}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs