Scenario Word

by hyunjuhwan

Not rated
GitHub

About

A server for the scenario-word MCP, built with the mcp-framework.

Details

Author
hyunjuhwan
Categories
Other
Tags
#content-creation, #entertainment

Setup

Install Scenario Word in your MCP client (Claude Desktop, Cursor, Windsurf, and others).

Repository: https://github.com/hyunjuhwan/mcp-server

Follow the installation instructions in the repository README, then restart your MCP client.

A Model Context Protocol (MCP) server built with mcp-framework.

# Install dependencies npm install # Build the project npm run build
scenario-word/ ├── src/ │ ├── tools/ # MCP Tools │ │ └── ExampleTool.ts │ └── index.ts # Server entry point ├── package.json └── tsconfig.json

The project comes with an example tool insrc/tools/ExampleTool.ts. You can add more tools using the CLI:

# Add a new tool mcp add tool my-tool # Example tools you might create: mcp add tool data-processor mcp add tool api-client mcp add tool file-handler
import { MCPTool } from "mcp-framework"; import { z } from "zod"; interface MyToolInput { message: string; } class MyTool extends MCPTool<MyToolInput> { name = "my_tool"; description = "Describes what your tool does"; schema = { message: { type: z.string(), description: "Description of this input parameter", }, }; async execute(input: MyToolInput) { // Your tool logic here return Processed: ${input.message}; } } export default MyTool;

- Ensurenameis unique and follows npm naming conventions
- Set appropriateversion
- Adddescription,author,license, etc.
- Checkbinpoints to the correct entry file

npm run build npm link scenario-word # Test your CLI locally

Login to npm (create account if necessary):

After publishing, users can add it to their claude desktop client (read below) or run it with npx

## Using with Claude Desktop ### Local Development Add this configuration to your Claude Desktop config file: MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json 
json { "mcpServers": { "scenario-word": { "command": "node", "args":["/absolute/path/to/scenario-word/dist/index.js"] } } }

Add this configuration to your Claude Desktop config file:

MacOS:~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:%APPDATA%/Claude/claude_desktop_config.json


{ "mcpServers": { "scenario-word": { "command": "npx", "args": ["scenario-word"] } } }
``

- Make changes to your tools
- Run
npm run build`to compile
- The server will automatically load your tools on startup

A professional Bazi (Chinese astrology) calculation server providing full analysis including four pillars, five elements, zodiac, and lunar dates with timezone support.

Connect Claude, GPT, and any MCP-compatible AI agent directly to FunGenerators.com. Generate names, insults, job titles, lorem ipsum, lottery numbers, and much more — all from a single tool call.

Give your AI agent access to 150+ translators covering fictional languages, pop culture dialects, historical languages, technical encodings, and internet slang.

A server that translates Chinese text into cute cat language expressions.

An AI-powered, synthwave, maze-crawling, and world-building adventure game server.

Tracks movies, books, and TV shows to provide intelligent recommendations based on your preferences.

Provides tarot card readings, including single card draws, multi-card spreads, and full deck access.

An MCP server for performing operations on Uncyclopedia with interactive authentication.

Generates dad jokes with multiple styles and topics, complete with ratings and fun statistics.

Enable fast, free real-time web search and access premium data from trusted media brands for news, financial markets, sports, entertainment, weather, and more.

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.