CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Octagon

octagonai/octagon-mcp-server
122
Summary

Connects Claude to the Octagon Market Intelligence API for financial research and analysis. Exposes four main tools: octagon-agent for public and private market data (SEC filings, earnings transcripts, funding rounds), octagon-deep-research-agent for multi-source synthesis, prediction-markets-agent for Kalshi event reports, and prediction_markets_history for structured historical market data. Requires a free Octagon API key and runs via npx in Claude Desktop, Cursor, or other MCP clients. Reach for this when you need to pull real financial data, analyze company filings, research private market transactions, or build investment thesis reports directly in your AI conversations.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →

Octagon: MCP for Public & Prediction Markets Intelligence

smithery badge

Favicon The Octagon MCP server provides specialized AI-powered financial research and analysis by integrating with the Octagon Market Intelligence API, enabling users to analyze and extract insights from public filings, earnings calls, financial metrics, stocks & crypto data, stock news, and prediction markets news & research within Claude Desktop and other popular MCP clients.

Demo

Tools

✅ octagon-agent orchestrates broad market intelligence analysis

  • Public market insights: SEC filings (10-K, 10-Q, 20-F, 8-K, S-1, 13-F, DEF 14A), earnings call transcripts
  • Stocks & crypto market data: stock trading, crypto trading data, news, press release, ownerships and holdings

✅ octagon-deep-research-agent for comprehensive deep research

  • Multi-source synthesis for investment research questions
  • Best for up-to-date, cross-source thematic analysis

✅ Prediction market research tooling

  • octagon-prediction-markets-agent for updated research reports on each prediction markets
  • prediction_markets_history for structured historical market data retrieval

✅ Live Octagon documentation access

  • octagon-docs-search, octagon-docs-read, octagon-docs-list, and octagon-docs-refresh
  • MCP resources for octagon-docs://catalog, octagon-docs://status, and octagon-docs://page/{target}

Get Your Octagon API Key

To use Octagon MCP, you need to:

  1. Sign up for a free account at Octagon
  2. After logging in, from left menu, navigate to API Keys
  3. Generate a new API key
  4. Use this API key in your configuration as the OCTAGON_API_KEY value

Prerequisites

Before installing or running Octagon MCP, you need to have npx (which comes with Node.js and npm) installed on your system.

Mac (macOS)

  1. Install Homebrew (if you don't have it):

    /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
    
  2. Install Node.js (includes npm and npx):

    brew install node
    

    This will install the latest version of Node.js, npm, and npx.

  3. Verify installation:

    node -v
    npm -v
    npx -v
    

Windows

  1. Download the Node.js installer:
    • Go to https://nodejs.org/ and download the LTS version for Windows.
  2. Run the installer and follow the prompts. This will install Node.js, npm, and npx.
  3. Verify installation: Open Command Prompt and run:
    node -v
    npm -v
    npx -v
    

If you see version numbers for all three, you are ready to proceed with the installation steps below.

Installation

Running on Claude Desktop

To configure Octagon MCP for Claude Desktop:

  1. Open Claude Desktop
  2. Go to Settings > Developer > Edit Config
  3. Add the following to your claude_desktop_config.json (Replace your-octagon-api-key with your Octagon API key):
{
  "mcpServers": {
    "octagon-mcp-server": {
      "command": "npx",
      "args": ["-y", "octagon-mcp@latest"],
      "env": {
        "OCTAGON_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}
  1. Restart Claude for the changes to take effect

Running on Cursor

Configuring Cursor Desktop 🖥️ Note: Requires Cursor version 0.45.6+

To configure Octagon MCP in Cursor:

  1. Open Cursor Settings
  2. Go to Features > MCP Servers
  3. Click "+ Add New MCP Server"
  4. Enter the following:
    • Name: "octagon-mcp" (or your preferred name)
    • Type: "command"
    • Command: env OCTAGON_API_KEY=your-octagon-api-key npx -y octagon-mcp

If you are using Windows and are running into issues, try cmd /c "set OCTAGON_API_KEY=your-octagon-api-key && npx -y octagon-mcp"

Replace your-octagon-api-key with your Octagon API key.

After adding, refresh the MCP server list to see the new tools. The Composer Agent will automatically use Octagon MCP when appropriate, but you can explicitly request it by describing your investment research needs. Access the Composer via Command+L (Mac), select "Agent" next to the submit button, and enter your query.

Running with npx

env OCTAGON_API_KEY=your_octagon_api_key npx -y octagon-mcp

Manual Installation

npm install -g octagon-mcp

Documentation

For comprehensive documentation on using Octagon agents, please visit our official documentation at: https://octagonai.co/docs/

The documentation includes:

  • Detailed API references
  • Agent-specific query guidelines
  • Examples and use cases
  • Best practices for investment research

For the latest hosted MCP client setup guide, see:

  • Octagon MCP Server Guide
  • Octagon Claude Plugin Guide
  • Octagon Agents Guide

This MCP server also exposes the live docs corpus directly to MCP clients. Documentation access is fetched from the public Octagon docs LLM entry point at https://octagonai.co/docs/llms.txt; it does not use or transmit OCTAGON_API_KEY.

Available Tools

The MCP server currently exposes the following tools:

Documentation Tools

These tools expose live Octagon docs inside the MCP session. They work even before OCTAGON_API_KEY is configured, which makes them useful for setup, troubleshooting, and discovering the right Octagon agent or API workflow.

octagon-docs-list

Lists live docs sections and pages from the Octagon docs corpus.

Parameters

  • section (string, optional): filter by docs section.
  • source (docs, site, or all, optional): defaults to the docs corpus.
  • limit (number, optional): maximum entries to return.

octagon-docs-search

Searches the Octagon API, agent, MCP, and plugin docs with source URLs and optional snippets.

Parameters

  • query (string, required): search query.
  • section (string, optional): filter by docs section.
  • source (docs, site, or all, optional): defaults to the docs corpus.
  • limit (number, optional): maximum results to return.
  • includeSnippets (boolean, optional): include matched snippets in results.

Example:

Search Octagon docs for Claude plugin connector setup.

octagon-docs-read

Reads one docs page or section as Markdown by title, URL, path, or catalog id.

Parameters

  • target (string, required): docs title, URL, path, or catalog id.
  • source (docs, site, or all, optional): defaults to the docs corpus.
  • maxChars (number, optional): maximum Markdown characters to return.
  • preferCachedContent (boolean, optional): use the indexed docs corpus when available.

Example:

Read the Octagon MCP server guide.

octagon-docs-refresh

Refreshes the in-memory docs catalog from the live LLM-friendly docs endpoints.

Parameters

  • includeSite (boolean, optional): also refresh the broader https://octagonai.co/llms.txt site index.

Documentation Resources

Clients that support MCP resources can also browse:

  • octagon-docs://catalog: normalized live docs catalog.
  • octagon-docs://status: cache state, source endpoints, and refresh metadata.
  • octagon-docs://page/{target}: one docs page or section as Markdown.

octagon-agent

Orchestrates public and private market intelligence analysis.

Parameters

  • prompt (string, required): natural language research request.
  • conversation (string, optional): existing Octagon conversation ID to continue a prior octagon-agent thread. Omit this on the first turn.
  • newConversation (boolean, optional): if true, starts a fresh Octagon thread for the active session/thread anchor. Recommended for the first turn of a brand new visible chat in top-layer hosts such as Claude Desktop.

Threaded usage

octagon-agent is the only MCP tool that forwards Octagon conversation threading. It is a stateful tool and expects session continuity. The MCP resolves session/thread state in this order:

  1. stored conversation for MCP transport session identity, when the transport actually provides it
  2. stored conversation for the server-managed default stdio session
  3. explicit conversation can still override the active session conversation for that call

This package currently runs as a stdio MCP server. In stdio mode, the server automatically establishes a process-local session for continuity across calls. Most local hosts such as Claude Desktop or Cursor can therefore use octagon-agent without supplying any extra threading fields for basic follow-up behavior.

When a top-layer host knows a call is the first turn of a new visible chat, it should pass newConversation: true. That explicitly clears any stored Octagon thread for the active MCP session anchor before the call, which prevents stale continuity when a stdio host reuses the same long-lived MCP process across multiple visible chats.

This means you can use any of these patterns:

  1. First call: send only prompt
  2. Let the MCP host preserve transport session continuity or rely on the default stdio session
  3. Second call: either
    • send the new prompt in the same MCP session, or
    • keep using the same stdio MCP process, or
    • explicitly pass the previous conversation

Transport session identity is the canonical continuity primitive for standards-compliant stateful MCP transports. For local stdio usage, the server-managed process session provides default continuity.

Session identity and Octagon conversation identity are different concepts:

  • MCP session identity controls server-side continuity across tool calls
  • Octagon conversation controls the active Octagon thread inside that session

The MCP result keeps the answer in content, and also returns structured metadata for orchestrators in structuredContent:

{
  "model": "octagon-agent",
  "text": "Which stock would you like the latest price for?",
  "conversation": "conv_123",
  "responseId": "resp_123",
  "followUp": {
    "required": true,
    "inputTemplate": "<ticker or company name>",
    "instructions": "Reply with just the missing detail and reuse the conversation value from this response."
  }
}

Explicit carry-forward example:

{
  "prompt": "AAPL",
  "conversation": "conv_123"
}

New visible chat example:

{
  "prompt": "Analyze Apple",
  "newConversation": true
}

Explicit refresh example:

{
  "prompt": "Start a fresh Octagon thread for this chat",
  "newConversation": true
}

Stateful tool policy

  • octagon-agent: stateful, uses a usable continuity anchor. In stdio hosts, that defaults to the server-managed process session unless you provide explicit conversation
  • other MCP tools: stateless and may run without session continuity

Example:

Compare NVIDIA and AMD on latest quarterly revenue growth, margins, and management commentary.

More examples:

  • "What were Amazon's revenue and net income figures in Q4 2023?"
  • "Analyze Tesla's R&D spending trends over the last 3 years."
  • "What guidance did NVIDIA's CEO provide regarding AI chip demand in their latest earnings call?"
  • "Compare the price-to-earnings, price-to-sales, and EV/EBITDA ratios for the top 5 semiconductor companies."
  • "What was Anthropic's latest funding round size, valuation, and key investors?"
  • "How many investments did Andreessen Horowitz make in AI startups in the last 12 months?"
  • "What are the latest news articles for NVIDIA stock from the past week?"

octagon-deep-research-agent

Performs comprehensive multi-source deep research and synthesis.

Parameters

  • prompt (string, required): natural language research request.

Example:

Research the impact of lower interest rates on late-stage private software valuations over the next 12 months.

More examples:

  • "Extract all data fields from zillow.com/san-francisco-ca/"
  • "Research the financial impact of Apple's privacy changes on digital advertising companies' revenue and margins"
  • "Retrieve historical Bitcoin price data from 2023 and analyze the price volatility trends"
  • "Analyze the competitive dynamics in the EV charging infrastructure market"

octagon-prediction-markets-agent

Generates research reports for Kalshi prediction market events.

Parameters

  • prompt (string, required): natural language research request.
  • cache (boolean, optional): controls agent variant routing.
    • omitted: prediction-markets-agent
    • false: prediction-markets-agent:refresh
    • true: prediction-markets-agent:cache

Example:

Generate a report for the Kalshi market https://kalshi.com/markets/kxbtcy/btc-price-range-eoy/kxbtcy-27jan0100

prediction_markets_history

Fetches historical data for a prediction market event ticker with optional pagination and time filters.

Parameters

  • event_ticker (string, required)
  • limit (number, optional)
  • cursor (string, optional)
  • captured_from (string, optional)
  • captured_to (string, optional)
  • include_analysis (boolean, optional; when true, requests analysis columns)

Example:

Fetch historical data for the Kalshi event https://kalshi.com/markets/kxbtcy/btc-price-range-eoy/kxbtcy-27jan0100

Troubleshooting

  1. API Key Issues: Ensure your Octagon API key is correctly set in the environment or config file.
  2. Connection Issues: Make sure the connectivity to the Octagon API is working properly.
  3. Rate Limiting: If you encounter rate limiting errors, reduce the frequency of your requests.

License

MIT

Individual Specialized MCP Servers

While this server provides comprehensive market intelligence combining all our specialized agents, you can also use our individual MCP servers for specific use cases:

Research Tools

  • Octagon Deep Research MCP - Comprehensive research and web scraping capabilities

⭐ Star this repo if you find it helpful!

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
Search & Web CrawlingData & Analytics
UpdatedFeb 15, 2026
View on GitHub

Related Search & Web Crawling MCP Servers

View all →
Google Search

com.mcparmory/google-search

Scrape Google search results with SERP data, ads, and knowledge panels
25
Brave Search

io.github.pipeworx-io/brave-search

Brave Search MCP — independent web index (no Google/Bing dependency)
Serper Search and Scrape

marcopesani/mcp-server-serper

Serper MCP Server supporting search and webpage scraping
154
Brave Search Mcp Server

brave/brave-search-mcp-server

Brave Search MCP Server: web results, images, videos, rich results, AI summaries, and more.
1.2k
Google Search Console

com.mcparmory/google-search-console

Query search analytics, manage sitemaps, and inspect site URLs and status
25
Google Search Console

acamolese/google-search-console-mcp

Google Search Console MCP server: SEO audits, performance queries, URL inspection, indexing checks.
3