drio
Open app

Getting Started with Create React App

Source

这是一个测试mcp server的仓库

Catalog onlyCatalog onlySTDIO

Overview

This project is a boilerplate for creating React applications using Create React App, which simplifies the setup and development process for React projects.

To use this project, clone the repository and run npm install to install the dependencies. Then, you can start the development server with npm start.

  • Quick setup for React applications using Create React App - Built-in scripts for development, testing, and production builds - Easy to customize and extend as needed
  1. Rapidly developing new React applications.
  2. Learning React by modifying the boilerplate code.
  3. Building production-ready applications with optimized builds.

Add to your AI client

Use these steps to connect Getting Started with Create React App 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": {
    "testrepo-myzhibie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-testrepo-myzhibie"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "testrepo-myzhibie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-testrepo-myzhibie"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "testrepo-myzhibie": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-testrepo-myzhibie"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "testrepo-myzhibie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-testrepo-myzhibie"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "testrepo-myzhibie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-testrepo-myzhibie"
      ]
    }
  }
}

FAQ

What is Create React App?

Create React App is a tool that sets up a new React project with a good default configuration.

How do I run tests?

You can run tests using the command `npm test`.

Can I customize the configuration?

Yes, you can eject the configuration using `npm run eject`, but this is a one-way operation.