drio
Open app

Mokei

Source

TypeScript toolkit for creating, interacting and monitoring clients and servers using the Model Context Protocol

Catalog onlyCatalog onlySTDIO

Overview

Mokei is a TypeScript toolkit designed for creating, interacting, and monitoring clients and servers using the Model Context Protocol (MCP).

To use Mokei, developers can integrate the toolkit into their TypeScript projects to facilitate communication between clients and servers based on the MCP.

  • Simplifies the creation of clients and servers using MCP. - Provides tools for monitoring interactions between clients and servers. - Supports TypeScript for enhanced development experience.
  1. Building real-time applications that require client-server communication.
  2. Developing applications that utilize the Model Context Protocol for data exchange.
  3. Monitoring and debugging client-server interactions in TypeScript applications.

Add to your AI client

Use these steps to connect Mokei 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": {
    "mokei-tairuframework": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mokei-tairuframework"
      ]
    }
  }
}

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": {
    "mokei-tairuframework": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mokei-tairuframework"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mokei-tairuframework": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mokei-tairuframework"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "mokei-tairuframework": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mokei-tairuframework"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mokei-tairuframework": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mokei-tairuframework"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mokei-tairuframework": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mokei-tairuframework"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is a protocol designed to facilitate communication between clients and servers in a structured manner.

Is Mokei suitable for large-scale applications?

Yes! Mokei is designed to handle both small and large-scale applications effectively.

Where can I find the documentation for Mokei?

You can find the documentation [here](https://mokei.dev).

Mokei MCP Server — MCP Registry