Back to MCP directory
publicPublicdnsLocal runtime

stereotype-this-mcp-server

一个MCP服务,提供将文本转换为四种文化刻板印象风格的功能,包括加拿大、英国、美国和澳大利亚的刻板印象风格转换和问候生成。

article

README

🚀 使用刻板印象来此MCP服务器

这是一个MCP服务器,能将任意消息转换为四种主要文化的搞笑且不准确的刻板印象提示,为交流增添别样乐趣。

✨ 主要特性

  • 可将任何文本转换为四种可用文化中的任意一种。
  • 能依据一个人的名字和当前天气季节,创建带有刻板印象的文化问候语,适用于无聊的小对话。

📚 详细文档

提示

以下提示可供使用: | 名称 | 描述 | 参数 | | ---- | ---- | ---- | | make-this-text-canadian | 将文本转换为具有典型加拿大英语和文化的刻板印象 | 无 | | make-this-text-british | 将文本转换为具有典型英国英语和文化的刻板印象 | 无 | | make-this-text-american | 将文本转换为具有典型美国英语和文化的刻板印象 | 无 | | make-this-text-australian | 将文本转换为具有典型澳大利亚英语和文化的刻板印象 | 无 | | create-a-canadian-greeting | 创建一个带有天气、人名和一些小对话的加拿大式问候语 | name(必需)、season(必需) | | create-a-british-greeting | 创建一个带有天气、人名和一些小对话的英国式问候语 | name(必需)、season(必需) | | create-a-american-greeting | 创建一个带有天气、人名和一些小对话的美国式问候语 | name(必需)、season(必需) | | create-a-australian-greeting | 创建一个带有天气、人名和一些小对话的澳大利亚式问候语 | name(必需)、season(必需) |

配置

Claude Desktop

在你的 claude_desktop_config.json 中添加以下配置之一:

NPX
{
  "mcpServers": {
    "stereotype-this": {
      "command": "npx",
      "args": [
        "-y",
        "@prsantos-com/stereotype-this-mcp-server"
      ]
    }
  }
}
Docker
{
  "mcpServers": {
    "stereotype-this": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "prsantos/stereotype-this-mcp-server"
      ]
    }
  }
}

注意

⚠️ 重要提示

此示例旨在演示MCP服务器中提示的基本使用,带有一点幽默。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client