https://github.com/dcspark/mcp-server-hello-world
https://github.com/dcspark/mcp-server-hello-world
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dcspark/mcp-server-hello-world
- Owner: dcSpark
- License: mit
- Created: 2025-03-05T02:04:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-05T02:18:36.000Z (over 1 year ago)
- Last Synced: 2025-10-04T20:57:49.558Z (9 months ago)
- Language: TypeScript
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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".
```