
Security News
Ruby's Bundler 4.0.18 Extends Cooldown to bundle lock and bundle cache
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.
@vox-ai-app/mcp
Advanced tools
MCP (Model Context Protocol) client for Vox — connect to stdio, SSE, and HTTP servers
MCP (Model Context Protocol) client for Vox. Connects to stdio, SSE, and HTTP MCP servers with session persistence and automatic reconnection.
npm install @vox-ai-app/mcp
import { connectMcpServer, setLogger } from '@vox-ai-app/mcp'
setLogger(logger)
const { client, tools } = await connectMcpServer({
id: 'my-server',
command: 'npx',
args: ['-y', '@modelcontextprotocol/server-filesystem', '/home']
})
// tools is an array of { name, description, inputSchema }
console.log(tools.map((t) => t.name))
// call a tool directly
const result = await client.callTool({ name: 'read_file', arguments: { path: '/home/notes.md' } })
| Type | Config |
|---|---|
| stdio | { command, args, env } |
| SSE | { url } where url ends with /sse |
| HTTP | { url } (streamable HTTP) |
Sessions for HTTP/SSE transports are persisted to {VOX_USER_DATA_PATH}/mcp-sessions.json to allow reconnection across restarts.
import {
getStoredSessionId,
persistSessionId,
clearSessionId,
terminateStaleSession
} from '@vox-ai-app/mcp'
connectMcpServer(server) // Connect and list tools
makeTransport(server) // Create transport only
parseCommand(str) // Parse "cmd arg1 arg2" into { command, args }
getStoredSessionId(serverId) // Read persisted session
persistSessionId(serverId, id) // Save session
clearSessionId(serverId) // Delete session
terminateStaleSession(server, id) // HTTP DELETE to terminate
setLogger(logger) // Inject logger
VOX_USER_DATA_PATH env var set to a writable directory (for session persistence)MIT
FAQs
MCP (Model Context Protocol) client for Vox — connect to stdio, SSE, and HTTP servers
We found that @vox-ai-app/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.

Company News
Socket is now in the AWS Security Hub Extended plan. Adopt it through AWS, apply committed spend, and block malicious open source packages.