enos-yapi-mcp
v0.1.4
Published
EnOS YApi MCP Tools - Model Context Protocol tools for EnOS development, includes YApi tools
Downloads
209
Maintainers
Readme
EnOS YApi MCP Tools
EnOS YApi MCP Tools is a Model Context Protocol (MCP) toolkit designed specifically for the EnOS development platform. It provides YApi API management capabilities, allowing you to directly interact with EnOS development resources in AI coding tools like Kiro, Cursor and Claude Desktop.
🚀 Quick Start
Method 1: Using npx
Get YApi Token
- Log in to the EnOS YApi platform
- Navigate to project settings
- Generate or view your Token in the Token configuration section
Configure Cursor
{
"mcpServers": {
"enos-aicoding-mcptools": {
"command": "npx",
"args": [
"-y",
"enos-aicoding-mcptools",
"--stdio",
"--yapi-base-url=https://yapi.apaas-beta1.eniot.io",
"--yapi-token=your_token_here",
"--yapi-project-id=your_project_id"
]
}
}
}- Restart Cursor and start using!
Method 2: Using Environment Variables
{
"mcpServers": {
"enos-aicoding-mcptools": {
"command": "npx",
"args": [
"-y",
"enos-aicoding-mcptools",
"--stdio"
],
"env": {
"YAPI_BASE_URL": "https://yapi.apaas-beta1.eniot.io",
"YAPI_TOKEN": "your_token_here",
"YAPI_PROJECT_ID": "your_project_id",
"YAPI_CACHE_TTL": "10",
"YAPI_LOG_LEVEL": "info"
}
}
}
}