Skip to main content
Glama

Karakeep MCP server

by karakeep-app
client.ts841 B
"use client"; import i18next from "i18next"; import resourcesToBackend from "i18next-resources-to-backend"; import { initReactI18next, useTranslation as useTranslationOrg, } from "react-i18next"; import { getOptions, languages } from "./settings"; const runsOnServerSide = typeof window === "undefined"; i18next .use(initReactI18next) .use( resourcesToBackend( (language: string, namespace: string) => import(`./locales/${language}/${namespace}.json`), ), ) .init({ ...getOptions(), lng: undefined, // let detect the language on client side debug: false, interpolation: { escapeValue: false, // not needed for react as it escapes by default }, preload: runsOnServerSide ? languages : [], }); export const useTranslation = useTranslationOrg; export const i18n = i18next;

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/karakeep-app/karakeep'

If you have feedback or need assistance with the MCP directory API, please join our Discord server