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
Alpha Vantage MCP Server
patrocinadorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
YAPI MCP Server
An MCP server for accessing YAPI interface details, configured via environment variables.
Model Context Protocol servers
A collection of reference server implementations for the Model Context Protocol (MCP) using Typescript and Python SDKs.
Last9
Seamlessly bring real-time production context—logs, metrics, and traces—into your local environment to auto-fix code faster.
mcp-checkup
Analyze your MCP setup: measure token cost per tool, find bloated schemas, detect duplicates, and get optimization tips to reclaim your context window.
MCP Time Server
Provides tools for getting the current time and date, and formatting timestamps in various formats and timezones.
Authenticator App MCP Server
A secure MCP server for AI agents to interact with the Authenticator App for 2FA codes and passwords.
Zero-Vector v3
A server for Zero-Vector's hybrid vector-graph persona and memory management system, featuring advanced LangGraph workflow capabilities.
MCP Playground
A demonstration MCP server implementation in Go featuring real-time bidirectional file communication.
Pickaxe AI Agent MCP
Manage your pickaxe.co AI agents, knowledge bases, users, and analytics directly through natural language.
Remote MCP Server (Authless)
A remote MCP server deployable on Cloudflare Workers without authentication.