Territory News MCP Server
Click on "Install 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., "@Territory News MCP ServerPre-call battlecard for Datadog ahead of my 2pm meeting"
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.
Territory News MCP Server π
Model Context Protocol (MCP) Server for Territory News β Real-time Account Intelligence, Deal Signals & Strategic Openers for Enterprise Sales & Account Executives.
π― Overview
Territory News MCP (tnews-mcp) frees Account Executives (AEs) and sales teams from being chained to the manual Territory News web UI. By exposing territory configuration, company search, real-time signal preview, and AI-enriched seller context over the open Model Context Protocol (MCP) standard, tnews-mcp allows autonomous orchestratorsβsuch as n8n, OpenClaw, Agentic Hermes, Claude Desktop, Cursor, Gemini, and custom Slack AI Agentsβto continuously execute high-leverage sales workflows in the background.
graph TD
subgraph "MCP Ecosystem"
Cal_MCP["Calendar MCP<br/>(Google / Outlook)"]
T_MCP["Territory News MCP<br/>(Signals, POV, Openers, Tracking)"]
C_MCP["CRM MCP<br/>(Salesforce / HubSpot)"]
E_MCP["Email MCP<br/>(Gmail / Outlook)"]
end
subgraph "Autonomous Orchestration Layer (n8n / OpenClaw / Hermes Agent / Claude)"
LLM["LLM Reasoning & Strategy Engine<br/>(Claude / Gemini / Llama / Hermes)"]
end
Cal_MCP -->|"Upcoming Meetings & Attendees"| LLM
T_MCP -->|"Account News, Executive Moves, Triggers"| LLM
C_MCP -->|"Pipeline Stages, Account Tier, Notes"| LLM
E_MCP -->|"Outreach Drafts & Sequences"| LLM
LLM --> W1["β 8:00 AM Morning Intelligence Briefing"]
LLM --> W2["β‘ 5-Minute Pre-Call Battlecard Generator"]
LLM --> W3["π― Trigger-Based Stalled Deal Reactivation"]
LLM --> W4["π₯ Multi-Threading Consensus Matrix"]
LLM --> W5["π Closed-Loop Feedback & Relevance Tuning"]Related MCP server: FundzWatch MCP Server
β‘ The 5 Autonomous Agent Workflows (Freeing You from the UI)
Instead of logging into territory.news every morning to manually click through accounts and copy openers, connect tnews-mcp to your multi-agent runner (n8n cron trigger, OpenClaw agent, or Hermes):
1. β 8:00 AM Morning Intelligence Briefing & Action Queue
How It Works: Every morning at 8:00 AM, an n8n / OpenClaw cron job awakens your sales agent.
Orchestration:
The agent calls CRM MCP to fetch your active pipeline (Stages 2β4) and top Tier-1 target accounts.
It invokes
territory_get_signalsontnews-mcpto scan for material catalysts over the last 24 hours (e.g., CapEx expansion, CIO hires, earnings surprises, restructuring).It cross-references your configured seller value proposition (
territory_get_seller_context) and synthesizes a 3-item Slack digest with 1-click pre-drafted outreach emails.
AE Impact: You wake up to prioritized, ready-to-send outreach in Slack rather than combing through Google Alerts or web tabs.
2. β‘ 5-Minute Pre-Call Battlecard Generator
How It Works: 10 minutes prior to any calendar event, your agent triggers automatically.
Orchestration:
Calendar MCP detects an upcoming meeting (e.g., "Discovery with VP of Engineering at Datadog").
Agent calls
territory_preview_signals(company="Datadog", domain="datadoghq.com")to pull breaking news and financial catalysts.Agent calls CRM MCP to fetch previous call objections and notes.
Agent delivers a 1-page tactical battlecard to your inbox or scratchpad containing:
Strategic Imperatives: What the account is currently navigating.
Persona Top-of-Mind: Key KPIs and friction points for the attendee's role.
3 Provocative Openers: POV-led conversation starters directly connecting their public news to your product.
Landmines: Competitor presence or sensitive topics to avoid.
3. π― Trigger-Based Stalled Deal Reactivation
How It Works: Re-engaging ghosted or closed-lost deals with authentic value instead of "just checking in".
Orchestration:
Agent queries CRM MCP for deals in Stalled / No Contact > 30 Days with ARR > $50k.
Agent queries
territory_get_signalsfor major inflection events (e.g., new executive hires, earnings beats, M&A, regulatory changes).When an event fires (e.g., "EquipmentShare Jumps on 26% Revenue Growth"), the agent drafts a contextual follow-up connecting the growth to solving the specific bottleneck documented in CRM notes.
4. π₯ Multi-Threading Consensus Matrix
How It Works: Enterprise deals require consensus across 6β10 stakeholders.
Orchestration:
When a single major catalyst is identified for a target account via
tnews-mcp, the agent automatically maps the event to distinct personas:To CFO: Cost containment, OPEX reduction, and vendor consolidation angles.
To CISO / Security: Compliance automation, zero-trust architecture, and audit risk reduction.
To VP Engineering: Developer velocity, eliminating deployment toil, and DORA metric acceleration.
The agent queues tailored outreach drafts in your email client via Email MCP.
5. π Closed-Loop Feedback & Relevance Tuning
How It Works: Continuous improvement of signal quality without manual configuration.
Orchestration:
When you accept, edit, or reject an outreach recommendation in Slack or Claude, the agent automatically invokes
territory_submit_feedbackontnews-mcp.This provides immediate closed-loop telemetry back to Territory News to tune signal scoring and relevance models for your territory over time.
ποΈ Architecture: Hybrid Browser Auth + Direct REST API
This MCP server uses a high-performance hybrid architecture:
One-Time Browser Login: Launches a visible browser window once to sign in via Clerk (Work Email / Google SSO). It automatically captures the session token and saves it locally to
~/.territory-mcp/session.json.100% Direct REST API: All subsequent operations run via lightning-fast HTTP REST requests directly against Territory News endpoints (
< 150mslatency, zero browser overhead, completely immune to DOM/UI changes).
π Quickstart
1. Installation
# Clone the repository
git clone https://github.com/junoonx/tnews-mcp.git
cd tnews-mcp
# Install dependencies and build
npm install
npm run build2. Connect to Your AI Host / Orchestrator
A. Claude Desktop
Add this to your claude_desktop_config.json (located at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"territory-news": {
"command": "node",
"args": ["/absolute/path/to/tnews-mcp/dist/index.js"]
}
}
}B. Cursor IDE / Cline / Windsurf
Add to your .cursor/mcp.json or MCP settings:
{
"mcpServers": {
"territory-news": {
"command": "node",
"args": ["/absolute/path/to/tnews-mcp/dist/index.js"]
}
}
}C. n8n / OpenClaw / Agentic Hermes / Docker
Pass the stdio command or set TERRITORY_SESSION_TOKEN in your environment:
TERRITORY_SESSION_TOKEN="your_clerk_session_jwt" node dist/index.jsπ Authentication
Method 1: Interactive Browser Login (Recommended)
Ask your AI assistant in Claude/Cursor:
"Log in to Territory News"
The server will invoke territory_login_browser, opening a browser window to territory.news. Log in with your work email or SSO. The browser will automatically save your session to ~/.territory-mcp/session.json and close itself.
Alternatively, you can run it directly from your terminal:
npm run loginMethod 2: Headless Environment Variable
You can provide your session token directly:
export TERRITORY_SESSION_TOKEN="your_clerk_session_jwt_or_cookie"π οΈ MCP Tools Reference
Tool Name | Parameters | Description |
| (none) | Check authentication state, user email, and tracked accounts count. |
|
| Opens visible browser window for one-time Clerk sign-in. |
| (none) | Clears saved session credentials from local storage. |
|
| Search public/private companies with fuzzy name matching. |
|
| Preview qualified real-time signals/headlines for any company. |
| (none) | List all currently monitored companies in your territory (1β10 accounts). |
|
| Add, remove, or replace accounts in your monitored territory. |
| (none) | View your active seller persona, role, product, and value proposition. |
|
| Configure sales context & trigger AI context enrichment. |
|
| Fetch real-time signals, strategic POVs, and deal openers for territory accounts. |
| (none) | Triggers a live re-scan of news and deal triggers across all territory accounts. |
|
| Submit feedback to improve signal relevance and AI deal openers. |
π‘ Example Prompts to Try with Your Agent
1. Pre-Call Discovery Battlecard
"I have a 2:00 PM discovery call with Datadog. Check my Territory News signals for Datadog, map them to my seller context, and give me a 1-page pre-call battlecard with 3 high-impact conversation openers."
2. Territory Account Setup
"Search for Snowflake, Datadog, Stripe, and HashiCorp on Territory News and add them to my monitored territory."
3. Seller Profile Alignment
"Update my Territory News seller context: I am an Enterprise AE selling an AI observability & FinOps platform. My primary use case is reducing cloud migration risk and Kubernetes egress waste. My value proposition is: 'We help enterprise platform teams prevent unexpected multi-cloud egress spikes and optimize compute utilization without manual SRE tuning.'"
4. Monday Morning Deal Trigger Briefing
"Run a scan on all my Territory accounts. Show me the top 3 high-leverage inflection events (earnings, leadership changes, product shifts) and draft a 1-click personalized email for each."
π License
MIT License. Built for high-performing sellers and modern sales engineering teams.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceAn MCP server providing real-time access to comprehensive B2B company and contact data for lead generation and business intelligence. It enables AI tools to search firmographics, discover key contacts, and automate personalized outreach workflows.31MIT
- AlicenseAqualityCmaintenanceProvides real-time business event intelligence and AI-scored sales leads to help users track funding rounds, acquisitions, and executive hires. It enables AI agents to generate strategic market briefs and manage company watchlists for predictive business insights.72342MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to automate sales prospecting by finding contacts by role and industry, enriching data with emails and tech stacks, scoring against ideal customer profiles, and generating personalized outreach sequences. Streamlines lead generation and sales engagement workflows through integrated research and sequence generation tools.
- AlicenseAqualityDmaintenanceGive your AI agent access to 60M+ companies and 300M+ verified contacts. Enrich leads, find work emails, discover tech stacks, and identify buying intent β directly from Claude, Cursor, Windsurf, or any MCP-compatible AI agent.1124MIT
Related MCP Connectors
Company and market intelligence, news, enrichment, and agentic workflows for dealmakers.
Private company data & real-time news signals for AI agents.
Social media analytics, video analysis, and competitor intel for any MCP-compatible AI agent.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/junoonx/tnews-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server