Manage sales pipeline, forecast revenue, track deals with HubSpot and Notion
Overall
score
18%
Does it follow best practices?
If you maintain this skill, you can automatically optimize it using the tessl CLI to improve its score:
npx tessl skill review --optimize ./path/to/skillValidation for skill structure
Manage sales pipeline, forecast revenue, track deals with HubSpot and Notion integration.
{
"mcpServers": {
"hubspot": { "command": "npx", "args": ["-y", "@sheffieldp/mcp-hubspot"], "env": { "HUBSPOT_API_KEY": "${HUBSPOT_API_KEY}" } },
"notion": { "command": "npx", "args": ["-y", "@makenotion/mcp-server"], "env": { "NOTION_API_KEY": "${NOTION_API_KEY}" } },
"slack": { "command": "npx", "args": ["-y", "@modelcontextprotocol/server-slack"], "env": { "SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}" } }
}
}// 1. Get deals
const deals = await hubspot.getDeals({ stage: "qualified" });
// 2. Calculate forecast
const forecast = deals.reduce((sum, d) => sum + d.amount, 0);
// 3. Update Notion
await notion.update("Revenue Forecast", { forecast });// Move deal to next stage
await hubspot.updateDeal(dealId, { dealstage: "contract_sent" });
await slack.notify("#sales", `Deal moved to contract: ${dealName}`);Skill v2.0 - Revenue Team
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.