mining-rights-daily-agent
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., "@mining-rights-daily-agent生成一份关于刚果钴矿的今日简报"
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.
Mining Rights Daily Agent Console
Chinese mining-rights daily brief agent with three MCP-style tools, a visible workflow canvas and auditable raw tool output. The user enters an industry topic such as 给我生成一份关于 Pilbara 锂矿的今日简报; the agent plans the request, calls news/resource/price tools, and returns a structured Chinese Markdown brief.
This repository is project 02 from the mining interview MVP set. It is fully standalone and can be evaluated or zipped independently.
What It Does
Implements three independent MCP-style servers/tools:
mining-news-mcp:search(query, days),fetch_article(url)mineral-pdf-mcp:extract_resources(pdf_url)lme-price-mcp:get_price(commodity, date),get_trend(commodity, days)
Parses commodity, region, topic and time window from Chinese, English or mixed prompts.
Generates Chinese Markdown briefs with a fixed structure.
Shows the agent workflow as a production-style canvas: User Input -> Planner -> three MCP tools -> Brief Synthesizer -> Markdown Output.
Keeps Raw Tool Output folded by default for audit and debugging.
Uses a live model when configured, with a Chinese template fallback when no key is present.
Returns
limitedplus warnings for unsupported commodities or missing evidence instead of silently falling back to lithium.
Related MCP server: GroundAPI
Brief Structure
# 主题今日简报
## 一、执行摘要
## 二、新闻摘要
## 三、资源量 / 储量数据
## 四、价格走势
## 五、风险提示
## 六、引用来源
## 七、数据缺口The brief body is Chinese and does not include [ok] or chat-style prefixes.
Quick Start
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
make brief
make consoleOpen http://localhost:8002.
Docker:
docker compose up --buildModel Configuration
The app reads model settings from environment variables only. Do not commit real keys.
export MODEL_API_KEY=your_key
export MODEL_BASE_URL=https://apihub.agnes-ai.com/v1
export MODEL_NAME=agnes-2.0-flashWhen MODEL_API_KEY is present, the Brief Synthesizer uses the configured OpenAI-compatible chat endpoint. Without a key, the deterministic Chinese template keeps the demo runnable.
API Example
curl -s http://localhost:8002/brief \
-H 'content-type: application/json' \
-d '{"prompt":"给我生成一份关于 Indonesia nickel 的今日简报"}' | jqStable response fields include status, warnings, source_mode, elapsed_ms, data_quality, intent, markdown and workflow_trace.
QA And Packaging
make test
make qa
make packagemake qa runs multi-topic brief cases including Pilbara lithium, Peru copper, Indonesia nickel, China rare earth, DRC cobalt, iron ore, zinc, gold, uranium and graphite. make package creates /Users/Zhuanz/Desktop/02-mining-rights-daily-agent-tool.zip.
MCP Client Config
mcp-config.json is included for Claude Desktop / Cursor-style MCP clients. Adjust absolute paths if the project is moved.
Boundaries
This is a complete interview MVP, not a production data room. Fixture sources are marked as fixture data, unsupported commodities remain limited, and real paid/login sources are not bypassed.
Related MCP Connectors
China A-share market data for research, backtesting and AI agents via MCP.
Web Content Extract Mcp connects AI agents to real public APIs via MCP. Tools include
Crypto market data & research MCP: price, derivatives, on-chain, sentiment, news, catalysts.
MCP server giving AI agents one-connection access to China A-share market intelligence: financials,
Related MCP Servers
AlicenseNot gradedqualityDmaintenanceNewsbang MCP is a powerful Model Context Protocol (MCP) server that provides access to real-time news intelligence through three essential tools: get_today_top_news,search_news,get_news_deep_report_and_analysis5MIT- AlicenseAqualityBmaintenanceReal-time data API for AI Agents. 10 MCP tools covering A-share stock quotes, market overview, fund data, web search, news, weather, logistics tracking, and IP geolocation.10MIT
- AlicenseAqualityDmaintenanceGenerates Chinese mining rights daily briefs with data status and citation sources, integrating MCP tools for mining news, PDF resource extraction, and LME price queries.2MIT
- FlicenseNot gradedqualityDmaintenanceProvides web search, page fetching, and A-stock data access (financial reports, announcements, research reports, penalties, IR meetings) via MCP tools.-