Content
## Introduction
Yushan Data API service is now fully compatible with the MCP protocol, creating the data service MCP Server. The mcp-server-unsense-corp-npm project serves as an enterprise-level data query service server, allowing users to quickly access Yushan Data's enterprise data services through LLM with simple configuration. It relies on the MCP Typescript SDK, enabling quick integration into agent assistants that support the MCP protocol.
## Tool List
To be determined
## Environment
### Obtain Usense UserID and Key
Please contact Yushan Data to obtain your user account and key.
### Install node.js
Successful installation is confirmed when the version number can be retrieved in the terminal. On macOS, it must be installed using brew.
```
node -v
npm -v
```
### Install Dependencies
```
npm install
```
### TypeScript Build
```
npm run build
```
### Update Version
First, log in to your npm account and update the version number in package.json.
```
npm login
npm publish --access public
```
### Configure MCP Server Config
macOS/Linux
```
"mcpServers": {
"usense-corp": {
"command": "npx",
"args": [
"-y",
"mcp-server-usense-corp"
],
"env": {
"YUSHAN_API_KEY": "your_api_key",
"YUSHAN_API_USERID": "your_api_userid"
}
}
}
```
Windows
```
"mcpServers": {
"usense-corp": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"mcp-server-usense-corp"
],
"env": {
"YUSHAN_API_KEY": "your_api_key",
"YUSHAN_API_USERID": "your_api_userid"
}
}
}
```
Connection Info
You Might Also Like
MarkItDown MCP
Converting files and office documents to Markdown.
Filesystem
Model Context Protocol Servers
Sequential Thinking
Offers a structured approach to dynamic and reflective problem-solving,...
TrendRadar
🎯 Say goodbye to information overload. AI helps you understand news hotspots...
Github
GitHub's official MCP Server
opik
Debug, evaluate, and monitor your LLM applications, RAG systems, and agentic...