// platform_release Purple / Gold 2026-06-01 Product Announcement

Threadlinqs Intelligence MCP Server v6 — 49 Tools, Two Transports, for Every AI Agent

Threadlinqs Intelligence 11 min read
mcpmodel-context-protocolintelthreadlinqs-mcpoauth-2.1streamable-httpclaude-desktopthreat-intelspl-kql-sigmamitre-attackstixpurple-tier

The Threadlinqs Intelligence MCP server is now at v6.0.0, and it exposes 49 tools that put the full Threadlinqs threat-intelligence platform directly inside any AI agent that speaks the Model Context Protocol. Connect Claude Desktop or Claude.ai to a remote endpoint over OAuth 2.1, or wire the intelthreadlinqs-mcp npm package into your terminal-based agent over stdio. Either way, your agent can now search live threats, pull SPL/KQL/Sigma detections, enrich IOCs, look up CVEs, map MITRE ATT&CK coverage, pivot on C2 infrastructure, run cross-correlations, and export STIX bundles and ATT&CK Navigator layers — all without you copy-pasting a single thing.

TL;DR — MCP v6 ships 49 tools on two transports that share one catalog: remote POST https://intel.threadlinqs.com/mcp (Streamable-HTTP + OAuth 2.1) for Claude Desktop / Claude.ai, and local intelthreadlinqs-mcp over stdio (Bearer tl_ API key) for CLI agents. It is a Purple-tier feature — every tool requires authentication and a Purple or Gold subscription (tier ≥ 3). OAuth 2.1 is live today.

What Is the Threadlinqs Intelligence MCP Server?

The Model Context Protocol is an open standard for connecting AI agents to external tools and data sources. An MCP server publishes a catalog of tools (callable functions with typed inputs) that an MCP-capable client — Claude Desktop, Claude.ai, or a CLI agent — can invoke on the user's behalf during a conversation.

The Threadlinqs Intelligence MCP server is the official bridge between that ecosystem and the Threadlinqs Intelligence platform. Instead of asking an agent to scrape the web for stale, half-attributed threat data, you give it a precise, authenticated channel into the same structured intelligence the platform serves through its UI: curated threats, detection rules in three flavors, IOC enrichment, CVE/CWE detail, threat-actor profiles, MITRE coverage, C2 infrastructure intelligence, daily debriefs, and analyst-grade correlations.

Two Transports, One Catalog

v6 runs the same 49 tools over two transports, so you choose based on where your agent lives — not on what data you can reach. The catalog is identical on both.

TransportEndpoint / PackageAuthBest for
Remote (Streamable-HTTP)POST https://intel.threadlinqs.com/mcpOAuth 2.1 (PKCE S256)Claude Desktop, Claude.ai custom connectors
Local (stdio)npx -y intelthreadlinqs-mcpBearer tl_ API key via THREADLINQS_API_KEYCLI agents, IDE-embedded MCP clients

Both transports speak JSON-RPC 2.0 and target MCP protocol version 2025-06-18. They expose the same tools, return the same structured payloads, and enforce the same access controls.

A Purple-Tier Feature

The Threadlinqs Intelligence MCP server is a Purple-tier capability. Every one of the 49 tools requires authentication and a Purple or Gold subscription (tier ≥ 3). There is no free or anonymous MCP access — the remote transport gates each session behind OAuth 2.1, and the local transport requires a valid Purple/Gold tl_ API key. This keeps the analyst-grade composite intelligence (correlations, C2 cross-pivots, threat bundles, STIX/ATT&CK export) behind a verified subscription.

Pricing is simple: Purple is $11.99/mo (our most popular tier) and Gold is custom for enterprise. See the pricing page for the full breakdown.

The 49 Tools

The catalog spans the entire intelligence lifecycle — from a single CVE lookup to a full daily-intel bundle an agent can summarize into a morning brief.

GroupCountTools
Threats10search_threats, get_threat, get_recent_threats, list_threat_categories, get_similar_threats, get_threat_simulations, get_threat_transcripts, get_threat_bundle, get_threat_hunting_bundle, bulk_get_threats
Detections4get_detections, search_detections, get_detection_detail, export_detection
IOCs4search_iocs, get_ioc_dns, get_ioc_intelligence, get_ioc_blast_radius
CVE / CWE4get_cve, get_cwe, get_cve_intelligence, bulk_get_cves
Threat Actors4get_actor, search_actors, get_actor_intelligence, get_infrastructure_pivots
MITRE ATT&CK4get_mitre_coverage, get_mitre_technique, get_mitre_gap_analysis, predict_mitre_transitions
C2 Infrastructure2get_c2, generate_c2_blocklist
Correlations2get_correlations, get_enrichment_overview
Debriefs4list_debriefs, get_debrief, get_latest_debrief, get_daily_intel_bundle
Simulations1list_simulations
Standards Export2export_stix, export_attack_navigator
Platform8get_started, get_platform_stats, get_landscape_briefing, get_daily_theme, get_threat_level, get_roadmap, get_changelog, health

What Your AI Agent Can Actually Do

The point of MCP isn't a tool list — it's the questions your agent can now answer on its own. A few examples:

How to Connect — Remote (Claude Desktop & Claude.ai)

The remote transport is the fastest path for chat-based agents. OAuth 2.1 is live — there's no API key to manage and no config file to edit.

  1. In Claude Desktop or Claude.ai, open the connector settings and choose Add custom connector.
  2. Enter the MCP endpoint URL: https://intel.threadlinqs.com/mcp
  3. When prompted, complete the OAuth 2.1 sign-in (authorization code with PKCE S256) using your Purple or Gold Threadlinqs account, then approve the requested access.
  4. The 49 tools appear in your client. Ask a question — the agent calls them automatically.

Under the hood, the endpoint is a Streamable-HTTP MCP server:

POST https://intel.threadlinqs.com/mcp
Content-Type: application/json
Accept: application/json, text/event-stream

{ "jsonrpc": "2.0", "id": 1, "method": "tools/list" }http

How to Connect — Local (CLI & stdio)

For terminal-based agents and IDE-embedded MCP clients, use the published npm package intelthreadlinqs-mcp over stdio, authenticated with a Bearer tl_ API key. Generate your key from Profile → API Key on the platform (your account must be Purple or Gold), then add this to your MCP client config:

{
  "mcpServers": {
    "threadlinqs-intel": {
      "command": "npx",
      "args": ["-y", "intelthreadlinqs-mcp"],
      "env": {
        "THREADLINQS_API_KEY": "tl_your_key"
      }
    }
  }
}json

That's it — restart your client and the same 49 tools are available locally.

Discovery & Documentation

Everything an agent (or a curious human) needs to discover the server is published at well-known URLs:

WhatURL
MCP manifesthttps://intel.threadlinqs.com/.well-known/mcp.json
OAuth protected-resource metadatahttps://intel.threadlinqs.com/.well-known/oauth-protected-resource
OAuth authorization-server metadatahttps://intel.threadlinqs.com/.well-known/oauth-authorization-server
Human documentationhttps://intel.threadlinqs.com/mcp
Markdown twin (for agents)https://intel.threadlinqs.com/mcp.md

Why This Matters

Threat intelligence is only useful at the speed of decision. When an analyst has to leave their workflow, open a portal, run a search, copy an IOC, paste it into another tool, and reformat a detection rule, the half-life of that intel is spent on mechanics. MCP collapses that loop: the agent your team already talks to can now reach authenticated, structured, current intelligence and act on it in the same breath — triage a threat, pull the matching SPL/KQL/Sigma, enrich an indicator, and hand back a STIX bundle for the TIP.

v6 is the version where that promise becomes real across both surfaces analysts actually use — the chat window and the command line — backed by a single, consistent 49-tool catalog and live OAuth 2.1.


The Threadlinqs Intelligence MCP server is available to Purple and Gold subscribers. Start at the MCP documentation page, or read more about the platform at intel.threadlinqs.com. Questions or enterprise inquiries: contact@threadlinqs.com.