enkai-mcp

enkai-mcp is a project built with TypeScript, primarily aimed at providing tools and editor functionalities for developers. It emphasizes usability and extensibility, particularly excelling in code generation and translation features. This allows developers to work more efficiently and streamline their workflows.

GitHub Stars

2

User Rating

Not Rated

Favorites

0

Views

29

Forks

0

Issues

0

README
enkai-mcp-server

An MCP server for seamless event scheduling on EnkAI.

1. Your Prompt 2. Generated Schedule Page
Example of a user prompt in chat Example of the generated scheduling page
Get Started

To debug this MCP server in your local environment:

git clone https://github.com/k-kohey/enkai-mcp
cd enkai-mcp
npm install
npm run build
Usage

When you input potential dates for an event from the MCP Client, a page is generated where attendance can be confirmed. For example, if you say, "I want to schedule a social gathering between 2025/10/01 and 2025/10/05," the LLM will find and execute the tool on this MCP Server. The tool also includes responses with execution dates and calendars, allowing you to specify relative dates like "tomorrow" or "this week," as well as days of the week like "weekdays" or "weekends" as potential dates.

Integrating with a calendar MCP could enable advanced applications such as narrowing down candidate dates based on participants' availability or adjusting schedules to account for local holidays.

Installation in your client

To use this MCP server, you'll need to configure your MCP client software.

{
  "mcpServers": {
    "enkai-mcp-server": {
      "command": "npx",
      "args": [
        "enkai-mcp"
        // You can also specify a version, e.g., "enkai-mcp@1.0.0"
      ]
    }
    // ... other MCP server configurations
  }
}

If you are using Raycast, you can install it using a deeplink created by percent-encoding JSON like the one above.

raycast://mcp/install?%7B%22name%22%3A%22enkai-mcp-server%22%2C%22type%22%3A%22stdio%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22enkai-mcp%40latest%22%5D%7D