jimeng-mcp-server
Verified Safeby wwwzhouhui
Overview
An MCP server to provide Claude and other LLMs with image and video generation capabilities via the JiMeng AI service's reverse-engineered API.
Installation
python -m jimeng_mcp.serverEnvironment Variables
- JIMENG_API_KEY
- JIMENG_API_URL
- JIMENG_MODEL
Security Notes
The server's source code itself does not contain obvious direct vulnerabilities like `eval` or hardcoded sensitive credentials within the Python files. It uses environment variables for `JIMENG_API_KEY` and `JIMENG_API_URL`, which is good practice. However, the project's core functionality relies on `jimeng-free-api-all`, a reverse-engineered API for JiMeng AI. This inherently introduces several security considerations: (1) The `JIMENG_API_KEY` is a browser `sessionid`, which is less secure than a dedicated API key and can expire or be subject to session hijacking if not properly protected. (2) Reliance on an unofficial, reverse-engineered API means potential instability, lack of security patches, and unpredictable behavior if the upstream official service changes. (3) The project explicitly states it is for 'personal learning and research use' and 'prohibits commercial use' due to its reverse-engineered nature.
Similar Servers
claude-code-mcp
Acts as an MCP server to enable LLMs to run Claude Code CLI in one-shot mode, bypassing permissions for complex coding, file system, Git, and terminal operations.
consult-llm-mcp
An MCP server that allows AI agents like Claude Code to consult stronger, more capable AI models (e.g., GPT-5.2, Gemini 3.0 Pro) for complex code analysis, debugging, and architectural advice.
imgenx
AI image and video generation and processing, functioning as a command-line tool or MCP server.
converse
Orchestrates and exposes various AI tools (chat, multi-model consensus, job management) over the Model Context Protocol, enabling local, persistent, and potentially asynchronous AI interactions across multiple Large Language Model (LLM) providers.