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.
Serveurs connexes
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
MCP Bridge
A proxy server that enables existing REST APIs to be used as Model Context Protocol (MCP) servers.
Semgrep
Enable AI agents to secure code with Semgrep.
Commands
An MCP server to run arbitrary commands on the local machine.
Abstract MCP Server
Caches large tool responses to files and returns compact resource links to save LLM context window space.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
Valar API MCP
Integrate with the Valar API, assisting frontend developers with API documentation and endpoint discovery.
Shell Command MCP Server
Execute pre-configured and secure shell commands via a Go-based MCP server.
seite
AI-native static site generator with built-in MCP server. Build sites, create content, apply themes, search docs, and deploy via Claude Code or any MCP client.
ZIN MCP Client
A lightweight CLI client that bridges local LLMs running on Ollama with STDIO MCP Servers.
MCP Server
A cross-platform MCP server implementation for Amazon Q and Claude, providing multiple tools in a single executable.