MCP.so
Sign In

team-evolve-http-mcpserver

@qianping-sara

About team-evolve-http-mcpserver

No overview available yet

Basic information

Category

Other

Runtime

node

Transports

stdio

Publisher

qianping-sara

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "team-evolve-http-mcpserver": {
      "command": "node",
      "args": [
        "/absolute/path/to/team-evolve-http-mcpserver/dist/index.js"
      ]
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is team-evolve-http-mcpserver?

A Model Context Protocol (MCP) server built with mcp-framework. It serves as a starter template for developing custom MCP tools and integrating them with AI assistants like Claude Desktop.

How to use team-evolve-http-mcpserver?

Install dependencies with npm install, build with npm run build, then add the server to Claude Desktop by editing the claude_desktop_config.json file with either a local path to the built dist/index.js or, after publishing to npm, with npx team-evolve-http-mcpserver.

Key features of team-evolve-http-mcpserver

  • Built on the mcp-framework for standardized MCP tool development.
  • Includes an example tool in src/tools/ExampleTool.ts for reference.
  • CLI command mcp add tool <name> to scaffold new tools.
  • Steps for publishing to npm for wider distribution.
  • Ready-to-use configuration for Claude Desktop (local or npx).

Use cases of team-evolve-http-mcpserver

  • Developing custom MCP tools for AI assistants.
  • Prototyping and testing MCP servers locally.
  • Publishing MCP tool packages to npm.
  • Integrating with Claude Desktop via the Model Context Protocol.

FAQ from team-evolve-http-mcpserver

How do I add a new tool to the server?

Use the CLI command mcp add tool my-tool to generate a new tool file in src/tools/.

How do I use this server with Claude Desktop?

Add a JSON entry to the Claude Desktop config file (claude_desktop_config.json) pointing to the local build or using npx after publishing.

How do I publish this server to npm?

Update package.json with a unique name, version, and description, then run npm run build, npm login, and npm publish.

What is the project structure?

The project contains src/tools/ for MCP tools, src/index.ts as the server entry point, plus package.json, tsconfig.json, and a build output directory.

What dependencies are required?

Node.js and npm are required. The project uses TypeScript and the mcp-framework package.

Comments

More Other MCP servers