TianGong-AI-MCP
Provides containerized deployment of the TianGong AI MCP Server, allowing for isolated and portable execution of the server with Docker.
Enables configuration of the TianGong AI MCP Server through environment variables stored in .env files, providing a secure way to manage API keys and other settings.
Supports execution of the TianGong AI MCP Server in Node.js environments, leveraging the JavaScript runtime for cross-platform compatibility.
Facilitates installation and dependency management for the TianGong AI MCP Server through the npm package registry.
Enables version management for Node.js when running the TianGong AI MCP Server, ensuring compatibility with specific Node.js versions.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TianGong-AI-MCPstart the streamable HTTP server on port 9279"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
TianGong-AI-MCP
TianGong AI Model Context Protocol (MCP) Local Server supports Streamable Http protocol.
Starting MCP Server
Streamable Http Server
npm install -g @tiangong-ai/mcp-server-local
npx dotenv -e .env -- \
npx -y -p @tiangong-ai/mcp-server-local tiangong-ai-mcp-http
npm i -g pm2
pm2 start "npx --no-install tiangong-ai-mcp-http" --name tiangong-mcp-local --time
pm2 restart tiangong-mcp-local
pm2 stop tiangong-mcp-local
pm2 logs tiangong-mcp-local
pm2 delete tiangong-mcp-local
pm2 statusUsing Docker
# Build MCP server image using Dockerfile (optional)
docker build -t linancn/tiangong-ai-mcp-server-local:0.0.1 .
# Pull MCP server image
docker pull linancn/tiangong-ai-mcp-server-local:0.0.1
# Start MCP server using Docker
docker run -d \
--name tiangong-ai-mcp-server-local \
--publish 9279:9279 \
--env-file .env \
linancn/tiangong-ai-mcp-server-local:0.0.1This server cannot be deployed
Maintenance
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
MCP server for building and testing AI agents with multi-model experimentation and insights.
Related MCP Servers
- AlicenseBqualityDmaintenanceAn educational implementation of a Model Context Protocol server that demonstrates how to build a functional MCP server for integrating with various LLM clients like Claude Desktop.1163MIT
- AlicenseBqualityDmaintenanceAn educational implementation of a Model Context Protocol server that demonstrates how to build a functional MCP server integrating with various LLM clients.2MIT
- FlicenseNot gradedqualityNot gradedmaintenanceA Model Context Protocol (MCP) server implementation that uses Server-Sent Events (SSE) to enable real-time, server-pushed updates between AI models and tools over HTTP connections.1-
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that bridges MCP clients with local LLM services, enabling seamless integration with MCP-compatible applications through standard tools like chat completion, model listing, and health checks.-