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
TechDebtMCP
MCP server for analyzing and managing technical debt in codebases via the Model Context Protocol
MCP Image Placeholder Server
Generates placeholder images from various providers like placehold.co and lorem-picsum.
Image MCP Server
An MCP server for AI image generation using OpenAI and Replicate APIs.
Agent Forge
A platform for creating and managing AI agents with specific personalities and simulating their responses. Requires a DeepSeek API key.
Image
Fetch and process images from URLs, local file paths, and numpy arrays, returning them as base64-encoded strings.
SpecBridge
Automatically generates MCP tools from OpenAPI specifications by scanning a folder for spec files. No configuration is needed and it supports authentication via environment variables.
Remote MCP Server on Cloudflare
A remote MCP server deployable on Cloudflare Workers with OAuth login support and local development capabilities.
Tabby-MCP-Server
A Tabby plugin implementing an MCP server for AI-powered terminal control and automation.
ClipToWSL
Enables AI coding agents to read Windows clipboard contents, including text and images, from within the Windows Subsystem for Linux (WSL).
NMAP
Perform network scanning and security auditing using the NMAP utility.