memtry-cli
v1.0.11
Published
Local stdio MCP proxy for memtry.io — bridges stdio MCP clients to the cloud
Readme
memtry-proxy
Local stdio MCP proxy for memtry.io — bridges stdio MCP clients to the cloud.
This is the client-side connector for the memtry cloud service. It allows desktop AI agents that speak the Model Context Protocol (MCP) over standard input/output (stdio) to interact with the version-controlled context store on Vercel/Supabase.
Setup & Build
Install dependencies:
npm installCompile TypeScript to JavaScript:
npm run buildRun local integration tests:
MEMTRY_URL=https://memtry.vercel.app node test-mcp.js
Configuration for MCP Clients
In your client configuration (e.g. mcp_config.json):
{
"mcpServers": {
"memtry": {
"command": "memtry-proxy",
"args": [
"--key",
"YOUR_API_KEY_HERE",
"--url",
"https://memtry.vercel.app"
]
}
}
}Publishing to NPM
Ensure you compile the files first:
npm run build
npm publish --access public(Requires npm login with OTP if multi-factor authentication is active).
