Momento MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Momento MCP ServerGet the value for key 'user_metadata' from the 'app-cache' cache"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Momento MCP Server
A simple Model Context Protocol (MCP) server implementation for Momento Cache.
Available on npmjs as @gomomento/mcp-momento
Tools
getGet the cache value stored for the given key.
Inputs:
keystring -- the key to look up in the cache.cacheNamestring -- the name cache where the key presides (optional)
Returns:
Hitwith the found value if the key was found.Missif the key was not found.Errorif the request failed.
setSets the value in cache with a given Time To Live (TTL) seconds. If a value for this key is already present, it will be replaced by the new value regardless of the previous value's data type.
Inputs:
key: string -- the key to set in the cachevalue: string -- the value to set for the given keyttl: integer -- the number of seconds to keep this value in the cache (optional)cacheName: string -- the name of the cache to store the key in (optional)
Returns:
Successif the key was successfully written to the cache.Errorif the request failed.
list-cachesLists the names of all the caches in your Momento account.
Inputs:
(none)
Returns:
Successwith a comma separated list of cache namesErrorif the request failed
create-cacheCreates a new cache in your Momento account
Inputs:
name: string - the name of the cache to create
Returns:
Successif the cache was successfully createdErrorif the request failed
delete-cacheDeletes a cache from your Momento account
Inputs:
name: string - the name of the cache to delete
Returns:
Successif the cache was successfully deletedErrorif the request failed
Quickstart
Get a Momento API key from the Momento Console. Note - to run control plane tools (
list-caches,create-cache,delete-cache), you must use a super user API key.Set environment variables to configure the cache name and Time To Live (TTL) for items in the cache.
# required export MOMENTO_API_KEY="your-api-key" # optional export MOMENTO_CACHE_NAME="your-cache-name" export DEFAULT_TTL_SECONDS=60
If you do not set these values, it will use mcp-momento as the cache name and 60 seconds for the default time to live.
Usage with MCP Inspector
npx -y @modelcontextprotocol/inspector npx @gomomento/mcp-momento@latestUsage with NPX on Claude Desktop
Note: if you're using nodenv, replace the plain npx with the path to your npx binary (e.g. /Users/username/.nodenv/shims/npx).
{
"mcpServers": {
"momento": {
"command": "npx",
"args": [
"-y",
"@gomomento/mcp-momento"
],
"env": {
"MOMENTO_API_KEY": "your-api-key",
"MOMENTO_CACHE_NAME": "your-cache-name",
"DEFAULT_TTL_SECONDS": 60
}
}
}
}Setup for local development
Install dependencies:
npm installBuild the server:
npm run buildRun with MCP Inspector
export MOMENTO_API_KEY="your-api-key" npx @modelcontextprotocol/inspector node dist/index.js
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/momentohq/mcp-momento'
If you have feedback or need assistance with the MCP directory API, please join our Discord server