drio
Open app

mcp-server-emojikey

Source

MCP Server for emojikey.io ... save your unique relationship state and interaction style with your favorite LLM

Catalog onlyCatalog onlySTDIO

Overview

Emojikey-server is an MCP server that allows large language models (LLMs) to maintain a consistent interaction style across conversations using emoji-based context keys known as emojikeys.

To use the emojikey-server, you need to set up the server with an API key from emojikey.io and integrate it with your LLM (like Claude) by configuring the server settings in your local setup.

  • Management of emojikeys for users and models. - Ability to set new emojikeys during conversations. - Retrieval of emojikey history. - Automatic API key generation and validation.
  1. Maintaining personalized conversations with LLMs across different devices.
  2. Allowing users to set moods or contexts in LLM interactions using emojis.
  3. Facilitating consistent user experiences in conversational AI applications.

Add to your AI client

Use these steps to connect mcp-server-emojikey in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-emojikey-identimoji": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-emojikey-identimoji"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-emojikey-identimoji": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-emojikey-identimoji"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-emojikey-identimoji": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-emojikey-identimoji"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-emojikey-identimoji": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-emojikey-identimoji"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-emojikey-identimoji": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-emojikey-identimoji"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-emojikey-identimoji": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-emojikey-identimoji"
      ]
    }
  }
}