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.
Servidores relacionados
Scout Monitoring MCP
patrocinadorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
patrocinadorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
jpx
JMESPath query tool with 320+ extended functions for JSON transformation and analysis
Flowbite MCP
This MCP server is the official tool that allows you to work with the Flowbite UI framework and generate websites, layouts, and themes using AI
Flux Schnell MCP Server
A text-to-image generation server using the Flux Schnell model.
Lightning Tools MCP Server
An MCP server for accessing useful Bitcoin Lightning tools.
Shell MCP
Securely execute shell commands with whitelisting, resource limits, and timeout controls for LLMs.
Kali AI Pentest MCP Tools
An AI penetration testing tool that uses natural language to operate various security tools like nmap, sqlmap, and metasploit.
MCP Gateway
Integrates multiple MCP servers into a single interface with a management Web UI and real-time status updates.
MCP‑Stack
A Docker Compose-based collection of MCP servers for LLM workflows, featuring centralized configuration and management scripts.
PydanticRPC
A Python library for building gRPC/ConnectRPC services with Pydantic models, featuring automatic protobuf generation and AI assistant tool exposure.
Cloudflare Remote MCP Server
An example of deploying a customizable, remote MCP server on Cloudflare Workers without authentication.