An open API service indexing awesome lists of open source software.

https://github.com/dcspark/mcp-server-hello-world


https://github.com/dcspark/mcp-server-hello-world

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# MCP Server Hello World

A Model Context Protocol server example with hello world methods.

## Installation

```bash
npm install
```

## Usage

```bash
npm run build
npm run inspector
```

## Testing

```bash
npm test
```

## Methods

### hello_world

Returns "hello world".

### hello_world_with_input

Returns "hello world" with the provided input.

Input:
- message (string, optional): The input to append to "hello world".

### hello_world_with_config

Returns "hello configuration" with the provided config.

Input:
- config (string, required): The configuration to append to "hello configuration".
```