Content
# TianGong-LCA-MCP
[中文](https://github.com/linancn/tiangong-lca-mcp/blob/main/README_CN.md) | [English](https://github.com/linancn/tiangong-lca-mcp/blob/main/README.md)
TianGong LCA Model Context Protocol (MCP) Server supports STDIO and Streamable Http protocols.
## Starting MCP Server
### Client STDIO Server
```bash
npm install -g @tiangong-lca/mcp-server
npx dotenv -e .env -- \
npx -p @tiangong-lca/mcp-server tiangong-lca-mcp-stdio
```
### Using Docker
```bash
# Build MCP server image using Dockerfile (optional)
docker build -t linancn/tiangong-lca-mcp-server:0.0.5 .
# Pull MCP server image
docker pull linancn/tiangong-lca-mcp-server:0.0.5
# Start MCP server using Docker
docker run -d \
--name tiangong-lca-mcp-server \
--publish 9278:9278 \
--env-file .env \
linancn/tiangong-lca-mcp-server:0.0.5
```
## Local Testing
### STDIO Server
```bash
# Launch the STDIO Server using MCP Inspector
npm start
```
### Streamable Http Server
```bash
npm run start:server
```
#### Streamable Http Local Server
```bash
npm run start:server-local
```
### Launch MCP Inspector
```bash
DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector
```
You Might Also Like
Ollama
Ollama enables easy access to large language models on various platforms.

n8n
n8n is a secure workflow automation platform for technical teams with 400+...
OpenWebUI
Open WebUI is an extensible web interface for customizable applications.
mcpmark
MCPMark is a benchmarking suite for agentic models in MCP environments.
smileyCoin
Smileycoin (SMLY) is a cryptocurrency using multiple proof-of-work algorithms.
markmap-mcp-server
Markmap MCP Server converts Markdown to interactive mind maps easily.