MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

MCP server by AsafDafna

创建于 1/14/2026
更新于 about 3 hours ago
Repository documentation and setup instructions

Rize MCP Server

MCP (Model Context Protocol) server for Rize.io time tracking integration. Works with Windsurf, Claude Desktop, and other MCP-compatible clients.

Setup

  1. Clone this repo
  2. Get your Rize API key from Settings > API in the Rize app
  3. Install and build:
    npm install
    npm run build
    

Available Tools

Read Operations

| Tool | Description | |------|-------------| | rize_get_current_user | Get current authenticated user info | | rize_list_clients | List all clients (with team info) | | rize_list_projects | List all projects (with client info) | | rize_list_tasks | List all tasks (with project info) | | rize_get_time_entries | Get time entries for a date range |

Write Operations

| Tool | Description | |------|-------------| | rize_create_client | Create a new client | | rize_create_project | Create a new project (optionally linked to client) | | rize_create_task | Create a new task (optionally linked to project) |

Note: Write operations require a teamName parameter to specify which team to create the entity under.

MCP Configuration

Windsurf

Add to your mcp_config.json:

{
  "mcpServers": {
    "rize": {
      "command": "node",
      "args": ["/path/to/rize-mcp/dist/index.js"],
      "env": {
        "RIZE_API_KEY": "your_api_key_here"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config:

{
  "mcpServers": {
    "rize": {
      "command": "node",
      "args": ["/path/to/rize-mcp/dist/index.js"],
      "env": {
        "RIZE_API_KEY": "your_api_key_here"
      }
    }
  }
}

License

MIT

快速设置
此服务器的安装指南

安装包 (如果需要)

npx @modelcontextprotocol/server-rize.io-mcp

Cursor 配置 (mcp.json)

{ "mcpServers": { "asafdafna-rize-io-mcp": { "command": "npx", "args": [ "asafdafna-rize-io-mcp" ] } } }