- Home
- MCP servers
- Mong
Mong
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"ricklord-mong-mcp-server": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/toshihikoyanase/mong-mcp-server",
"mong-mcp"
]
}
}
}You can run a moby-like random name generator named mong through an MCP server to supply name ideas to tools like Claude Desktop and VS Code Copilot Agent. This MCP server exposes a simple, configurable endpoint that you start locally and connect to your MCP clients to generate unique, playful names on demand.
How to use
Connect your MCP clients to the mong MCP server using the standard MCP connection workflow you use for other MCP servers. Once connected, you can request new random names on demand. The server is designed to be lightweight and easy to configure, so you can run it locally and keep it available for your development sessions.
How to install
Prerequisites you need before installation:
-
Python (and a runtime environment)
-
The uv tool for running MCP server commands (as shown in start instructions)
Step-by-step commands to get mong running locally:
# 1. Clone the project repository
git clone https://github.com/toshihikoyanase/mong-mcp-server.git
cd mong-mcp-server
# 2. Start the server (runtime command shown in the source usage)
uv run python -m mong_mcp_server
Configuration and usage notes
The mong MCP server has explicit configuration examples for common MCP clients. You can integrate these configurations into Claude Desktop or VS Code Copilot Agent to connect to the server.
{
"mcpServers": {
"mong": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/toshihikoyanase/mong-mcp-server",
"mong-mcp"
]
}
}
}
{
"mcpServers": {
"mong": {
"command": "uv",
"args": [
"--directory",
"/path/to/repository",
"run",
"python",
"-m",
"mong_mcp_server"
]
}
}
}
Additional configuration for VS Code Copilot Agent
To enable the mong MCP server in VS Code Copilot Agent, place a configuration under the servers section in your MCP setup.
{
"servers": {
"mong": {
"type": "stdio",
"command": "uvx",
"args": [
"--from",
"git+https://github.com/toshihikoyanase/mong-mcp-server",
"mong-mcp"
]
}
}
}
Available tools
mong
Moby-like random name generator endpoint exposed via MCP for name generation in connected clients.