drio
Open app

mcp-teamate-server

Source

Teamate MCP 服务器端

Catalog onlyCatalog onlySTDIO

Overview

The mcp-teamate-server is an HTTP API server designed to provide backend services for the MCP Teamate application.

To use the mcp-teamate-server, install the dependencies using bun install, run the server with bun run src/server/index.ts, and run tests with bun test.

  • Provides a structured HTTP API for MCP Teamate. - Supports automatic creation of a data directory for database files. - Easy to set up and run with Bun, a fast JavaScript runtime.
  1. Serving as a backend for mobile or web applications using MCP Teamate.
  2. Facilitating data storage and retrieval for MCP Teamate functionalities.
  3. Enabling testing and development of features in the MCP Teamate ecosystem.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

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-teamate-server-aokihu": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-teamate-server-aokihu"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is the purpose of the data directory?

The data directory is used to store database files and is automatically created on the first run of the server.

How do I run the server?

You can run the server by executing `bun run src/server/index.ts` after installing the dependencies.

Is there any version control for the data directory?

No, the data directory is not included in version control, and each environment needs to maintain its own data.