Mong MCP Server
A moby-like random name generator for use with tools like Claude Desktop and VS Code Copilot Agent.
mong-mcp-server
A Model Context Protocol (MCP) server implementation that provides a moby-like random name generator ("mong") for use with tools like Claude Desktop and VS Code Copilot Agent.
Features
- Exposes a moby-like random name generator through the MCP interface
- Easy setup and configuration
Configuration for Claude Desktop
Add this server under the mcpServers key of Claude Desktop configuration.
See the official document of the Model Context Protocol for details.
{
"mcpServers": {
"mong": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/toshihikoyanase/mong-mcp-server",
"mong-mcp"
]
}
}
}
or
{
"mcpServers": {
"mong": {
"command": "uv",
"args": [
"--directory",
"/path/to/repository",
"run",
"python",
"-m",
"mong_mcp_server"
]
}
}
}
Configuration for VS Code Copilot Agent
Add this server under the servers key in your MCP configuration for VS Code.
For example, to enable the MCP server in your workspace, create a .vscode/mcp.json file as follows:
{
"servers": {
"mong": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/toshihikoyanase/mong-mcp-server",
"mong-mcp"
]
}
}
}
Install locally
-
Clone the repository:
git clone https://github.com/toshihikoyanase/mong-mcp-server.git cd mong-mcp-server -
Start the server:
uv run python -m mong_mcp_server
Running Tests
Run the unit tests to verify the server functionality:
uv run python -m unittest discover tests/
License
This project is licensed under the MIT License. See the LICENSE file for details.
相关服务器
Scout Monitoring MCP
赞助Put performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
赞助Access financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
ArchiveNet
A context insertion and search server for Claude Desktop and Cursor IDE, using configurable API endpoints.
Reactive AI Agent Framework
A reactive AI agent framework for creating agents that use tools to perform tasks, with support for multiple LLM providers and MCP servers.
plugged.in App
A web app for managing MCP servers, offering a unified interface to discover, configure, and utilize AI tools.
D2 MCP Server
Generate, render, and manipulate D2 diagrams with incremental editing capabilities.
UIAutomator2 MCP Server
Automate and control Android devices using the UIAutomator2 framework.
Cntx UI
A minimal file bundling and tagging tool for AI development, featuring a web interface and MCP server mode for AI integration.
All-in-MCP
Provides utility functions for common tasks like text processing, encoding, decoding, hashing, and system information.
Qase
Interact with the Qase API for test management. Requires a QASE_API_TOKEN for authentication.
MCP Montano Server
A general-purpose server project built with TypeScript.
mcp4eda
A collection of MCP servers for Electronic Design Automation (EDA) workflows, including tools for die yield calculation and Verilog/SystemVerilog analysis.