drio
Open app

first-mcp-server

Source

Catalog onlyCatalog onlySTDIO

Overview

first-mcp-server is a project that serves as a basic server setup using Bun, a fast all-in-one JavaScript runtime.

To use first-mcp-server, install the dependencies using the command bun install, and then run the server with bun run index.ts.

  • Fast server setup using Bun - Simple installation and running commands - Built with TypeScript for type safety
  1. Setting up a quick development server for JavaScript applications.
  2. Learning and experimenting with Bun as a JavaScript runtime.
  3. Building and testing TypeScript applications in a server environment.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "first-mcp-server-aroramrinaal": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-first-mcp-server-aroramrinaal"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What is Bun?

Bun is a fast all-in-one JavaScript runtime that can be used for building server-side applications.

Is first-mcp-server free to use?

Yes! first-mcp-server is open-source and free to use.

What programming language is used in first-mcp-server?

The project is built using TypeScript.