用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/WellApp-ai/Well --skill mcp-server命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Connect and verify the Well MCP — authenticate, confirm the tools work, and show what to ask. Use when the user runs /well:connect, just installed the Well plugin, or says the Well connection/MCP "isn't working" / "nothing happened".
Produce an accounts-receivable aging report and surface overdue invoices for a Well workspace. Use when the user asks who owes them money, an AR aging report, overdue invoices, days sales outstanding (DSO), or which customers to chase.
Forecast cash flow and runway for a Well workspace from booked invoices and collected bank transactions. Use when the user asks for a cash-flow forecast, runway, how long until they run out of cash, projected balance, or expected inflows/outflows.
基于 SOC 职业分类
正在显示 SKILL.md
| name | mcp-server |
| description | Guide for creating new MCP server integrations |
Use this skill when creating a new MCP server integration.
MCPs live in: ~/.cursor/projects/<project>/mcps/<server-name>/
mcps/
├── user-notion/
│ └── tools/
│ ├── API-retrieve-a-page.json
│ └── ...
├── cursor-ide-browser/
│ └── tools/
│ ├── browser_navigate.json
│ └── ...
└── user-n8n-mcp/
└── tools/
└── ...
Each tool is a JSON file:
{
"name": "tool-name",
"description": "What this tool does",
"arguments": {
"type": "object",
"properties": {
"param1": { "type": "string", "description": "..." }
},
"required": ["param1"]
}
}
CallMcpTool with server, toolName, argumentsCallMcpTool:
server: "user-notion"
toolName: "API-retrieve-a-page"
arguments: { "page_id": "abc123" }
| MCP | Capabilities |
|---|---|
| user-notion | Page/block CRUD, search, comments |
| cursor-ide-browser | Navigation, clicks, screenshots, console |
| user-n8n-mcp | Workflow search, details, execution |
| user-context7 | Library docs lookup |
| figma | Design specs, code generation from frames |
mcps/<server-name>/tools/~/.cursor/mcp.jsonCallMcpToolFor MCPs that use API keys (Notion, n8n):
"mcp-name": {
"command": "npx",
"args": ["-y", "@package/mcp-server"],
"env": {
"API_KEY": "your-token-here"
}
}
For MCPs that connect to local servers (Figma desktop):
"mcp-name": {
"url": "http://127.0.0.1:PORT/mcp"
}
For MCPs that use browser OAuth (Figma remote):
"mcp-name": {
"url": "https://service.com/mcp"
}
After adding, click "Connect" in Cursor MCP settings to authorize.
Installation loops infinitely:
~/.cursor/mcp.jsonMCP not appearing: