Upstash MCP Server

Official
  • src
import { http } from "./http"; import { log } from "./log"; export async function testConnection() { log("๐Ÿงช Testing connection to Upstash API"); // TODO: Test the connection to the Upstash API here // to check if the token is valid const res = await http.get<[]>("v2/teams"); if (!Array.isArray(res)) throw new Error("Invalid response from Upstash API. Check your API key and email."); log("โœ… Connection to Upstash API is successful"); }