vibe

vibe

Social layer for AI coding — DMs, presence, discovery, and multiplayer games between developers. 68 tools including messaging, presence, memory, and 27 multiplayer games.

Category
访问服务器

README

/vibe MCP Server

npm version license node CI

The social layer for AI coding. DMs, presence, discovery, and games between developers — without leaving your editor.

Works with Claude Code, Cursor, VS Code, Windsurf, Cline, Continue.dev, JetBrains, and any MCP-compatible client.

Install

Add to your MCP config and restart your editor:

<details open> <summary><strong>Claude Code</strong></summary>

Add to ~/.claude.json:

{
  "mcpServers": {
    "vibe": {
      "command": "npx",
      "args": ["-y", "slashvibe-mcp"]
    }
  }
}

Or via CLI:

claude mcp add vibe -- npx -y slashvibe-mcp

</details>

<details> <summary><strong>Cursor</strong></summary>

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "vibe": {
      "command": "npx",
      "args": ["-y", "slashvibe-mcp"]
    }
  }
}

</details>

<details> <summary><strong>VS Code (GitHub Copilot)</strong></summary>

Add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "vibe": {
      "command": "npx",
      "args": ["-y", "slashvibe-mcp"]
    }
  }
}

Or add to your settings.json:

{
  "mcp": {
    "servers": {
      "vibe": {
        "command": "npx",
        "args": ["-y", "slashvibe-mcp"]
      }
    }
  }
}

</details>

<details> <summary><strong>Windsurf</strong></summary>

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "vibe": {
      "command": "npx",
      "args": ["-y", "slashvibe-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Cline (VS Code)</strong></summary>

Open Cline > MCP Servers icon > Configure > Edit JSON, then add:

{
  "mcpServers": {
    "vibe": {
      "command": "npx",
      "args": ["-y", "slashvibe-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Continue.dev</strong></summary>

Create .continue/mcpServers/vibe.json:

{
  "command": "npx",
  "args": ["-y", "slashvibe-mcp"]
}

</details>

<details> <summary><strong>JetBrains (IntelliJ, WebStorm, etc.)</strong></summary>

Go to Settings > Tools > AI Assistant > Model Context Protocol (MCP) and add a new server:

  • Command: npx
  • Arguments: -y slashvibe-mcp

Or import from your Claude Code config if you already have one. </details>

Getting Started

Once installed, tell Claude:

"let's vibe"

That's it. Claude will authenticate you via GitHub, show who's online, and check your inbox.

If you prefer step-by-step:

  1. Authenticatevibe init opens GitHub OAuth in your browser. Takes 30 seconds.
  2. See who's aroundvibe who shows online builders and what they're working on.
  3. Check messagesvibe inbox shows unread DMs.
  4. Send your first messagevibe dm @seth hey, just set up /vibe!

Tools (39)

Core — Identity & Session

Tool What it does
vibe_start Entry point — authenticates, shows who's online, checks inbox
vibe_init Set up your identity via GitHub OAuth
vibe_bye End your session

Core — Messaging

Tool What it does
vibe_dm Send a direct message
vibe_inbox Check your unread messages
vibe_ping Send a quick wave to someone
vibe_react React to a message
vibe_open Open a conversation thread with someone

Presence

Tool What it does
vibe_who See who's online and what they're building
vibe_status Set your mood or what you're working on
vibe_away Set yourself away
vibe_back Return from away

Creative — Ship & Share

Tool What it does
vibe_ship Share with the community: ship (default), idea, or request via type param
vibe_session_save Save your coding session — makes it replayable, discoverable, and forkable
vibe_session_fork Fork an existing session to build on it
vibe_feed See what people are shipping and sharing
vibe_context Share what you're working on

Discovery

Tool What it does
vibe_discover Find people, skills, and partners. Subcommands: suggest, search, interests, active, skills, partner
vibe_invite Generate an invite link

Memory

Tool What it does
vibe_remember Save a note about someone for next time
vibe_recall Pull up everything you know about someone
vibe_forget Delete a memory

Games — 27 Multiplayer & Solo Games

Tool What it does
vibe_game All games via one tool. Multiplayer (tictactoe, chess), solo (hangman, rps, memory), party (twotruths, werewolf), AI (tictactoe-ai), collaborative (drawing, crossword, wordassociation, wordchain, storybuilder)

Artifacts

Tool What it does
vibe_create_artifact Create a shareable guide, workspace, or learning
vibe_view_artifact View shared artifacts

File Coordination

Tool What it does
vibe_reserve Reserve files for editing
vibe_release Release file reservations
vibe_reservations List active file reservations

Infrastructure

Tool What it does
vibe_handoff Create an AIRC context handoff for another tool
vibe_report Report issues or inappropriate behavior
vibe_suggest_tags Get tag suggestions for your profile

Diagnostics

Tool What it does
vibe_help Show available commands
vibe_doctor Full health check — API, auth, storage, presence
vibe_update Check for and apply updates

Settings

Tool What it does
vibe_settings Configure preferences
vibe_notifications Configure notification channels
vibe_presence_agent Background presence agent
vibe_mute Mute a user
vibe_summarize Summarize session context

How It Works

/vibe is an MCP server that connects your editor to slashvibe.dev. Messages sync via a Postgres backend with local SQLite persistence for offline-first speed. Everyone using /vibe is on the same network — regardless of which editor they use.

Your Editor ←→ /vibe MCP (stdio) ←→ slashvibe.dev API ←→ Other users
                     ↕
               Local SQLite DB
               (~/.vibecodings/sessions.db)
  • Identity persists via GitHub OAuth — your handle follows you across sessions
  • Messages are stored locally first, then synced to the server (optimistic send)
  • Presence broadcasts via heartbeat — others see you in real time
  • Memory is local — notes you save about people stay on your machine

Troubleshooting

"I installed but don't see /vibe tools in Claude Code"

  • Make sure you restarted Claude Code after adding the MCP config
  • Check your config file: ~/.claude.json or ~/.config/claude-code/mcp.json
  • Run vibe doctor to diagnose issues

"Authentication failed or timed out"

  • The OAuth flow opens a browser window — if it didn't open, go to slashvibe.dev/login manually
  • The auth callback runs on localhost:9876 — make sure that port is free
  • You have 2 minutes to complete the GitHub login

"Messages aren't sending"

  • Run vibe doctor to check API connectivity
  • Check your internet connection
  • Messages are saved locally even if the API is down — they'll sync when you reconnect

"I see 'Unknown tool' errors"

  • You may be running an older version. Run vibe update or reinstall: npm install -g slashvibe-mcp

Configuration

Config lives at ~/.vibecodings/config.json (primary) or ~/.vibe/config.json (legacy fallback).

Local message database: ~/.vibecodings/sessions.db (SQLite, shared with Vibe Terminal desktop app).

Contributing

We welcome contributions. Please read our Contributor License Agreement before submitting pull requests.

License

MIT — see LICENSE

Links


Built by Slash Vibe, Inc.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选