CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

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

Cross AI Tools

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
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

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

Independent project, not affiliated with Anthropic

MyTelescope

mytelescope/mcp-orchestrator
HTTPregistry active
Summary

Connects Claude to MyTelescope's demand intelligence platform so you can query search trends, competitor share, and emerging topics without leaving your editor. Exposes tools for tracking demand signals over time and geography, calculating relative share between brands or keywords, projecting short-term and seasonal forecasts, and surfacing fast-growing topics before they hit mainstream. Uses OAuth 2.1 with PKCE, so no API keys to paste. Requires a MyTelescope account and consumes credits per call. Useful when you're building go-to-market decks, researching product positioning, or need to answer "is demand for X rising in Germany?" with real data instead of guessing.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
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 →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
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 →

MyTelescope Orchestrator MCP Server

A hosted Model Context Protocol (MCP) server from MyTelescope.

What is MyTelescope?

MyTelescope is a demand intelligence platform for marketers and growth teams. It turns real-world search and behavioral signals into decisions — which keywords are rising, which markets are heating up, which competitors are gaining share, and where to place the next bet.

Core capabilities exposed through this MCP server include:

  • Demand signals — track how demand for a topic, product, or category evolves over time and geography.
  • Priorities & share — calculate relative demand share between competitors, brands, or keywords.
  • Trajectory & forecasting — project where demand is heading (short-term and seasonal).
  • Emerging demand — surface fast-growing topics before they become obvious.
  • Signal collections — query curated, private, or public collections of market signals.
  • Location intelligence — scope any analysis to a country, region, or city.

By connecting MyTelescope to an MCP-compatible client (Claude Desktop, Claude Code, Cursor, etc.), you can ask questions like "is demand for X rising in Germany?" or "who's gaining share in the running-shoe category this quarter?" and get grounded, data-backed answers inside your normal workflow.

Authentication

The server uses OAuth 2.1 with PKCE backed by Firebase. You do not need to paste an API key — your MCP client handles the flow automatically.

What happens when you connect:

  1. Your MCP client connects to the server and receives a 401 challenge.
  2. The client opens MyTelescope's hosted login page in your browser.
  3. You sign in with your MyTelescope account (email/password or Google).
  4. The browser redirects back to your client, which receives and stores an access token.
  5. All subsequent MCP calls include the token automatically.

To use MyTelescope through MCP you need a MyTelescope account. If you don't have one, sign up at mytelescope.io. Tool calls are metered against your account's credit balance, the same way they are inside the MyTelescope web app.

Client setup

Pick the path that matches how you use Claude (or your MCP client of choice). All paths end at the same OAuth login screen on first connection.

Option 1 — Claude.ai / Claude Desktop (no config files, UI only)

This is the easiest path. On Pro, Max, Team, or Enterprise plans (Free allows one custom connector):

  1. Open Claude → Settings → Connectors.
  2. Click + Add custom connector.
  3. Paste the URL:
    https://mytelescope-orchestrator-mcp-amjjfcdvoa-uc.a.run.app/mcp
    
  4. Click Add.
  5. Click Connect on the new "MyTelescope" connector — a browser window opens for MyTelescope login; sign in and you're done.

No JSON files, no npx, no Node.js required. Claude handles the OAuth handshake and token refresh automatically.

On Team/Enterprise workspaces, an Owner adds the connector once; members click Connect and sign in individually.

Option 2 — npx mcp-remote config (any stdio MCP client)

For clients that use JSON config files — or older Claude Desktop versions that don't have the Connectors UI — use the mcp-remote bridge. Run on the fly via npx, handles OAuth + token caching, requires Node.js 18+.

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "mytelescope": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mytelescope-orchestrator-mcp-amjjfcdvoa-uc.a.run.app/mcp"
      ]
    }
  }
}

Claude Code (CLI)

claude mcp add --transport http mytelescope \
  https://mytelescope-orchestrator-mcp-amjjfcdvoa-uc.a.run.app/mcp

If your version of Claude Code doesn't support --transport http yet, use the same npx mcp-remote config as Claude Desktop above.

Cursor (~/.cursor/mcp.json)

Cursor supports remote servers directly — no mcp-remote bridge needed:

{
  "mcpServers": {
    "mytelescope": {
      "url": "https://mytelescope-orchestrator-mcp-amjjfcdvoa-uc.a.run.app/mcp"
    }
  }
}

Windsurf / other stdio-only clients

Use the same npx mcp-remote snippet shown for Claude Desktop.

First-run login

Whichever path you use, the first connection opens your browser at MyTelescope's hosted login page. Sign in with your MyTelescope account; your token is cached (by Claude, or by mcp-remote under ~/.mcp-auth/) so subsequent sessions are silent until the token expires.

Registry

This server is listed on the official MCP Registry under the namespace io.github.mytelescope/orchestrator.

Support

  • Issues: open a GitHub issue on this repo
  • Contact: theesh@mytelescope.io

License and terms of use

The MIT license in this repository covers only the contents of this repository — the README, the server.json manifest, and example snippets. You are free to copy, fork, or adapt those files.

The MyTelescope service is a paid SaaS product and is not free. The MIT license does not grant any right to use, access, or redistribute:

  • The MyTelescope orchestrator service or any hosted MCP endpoint operated by MyTelescope
  • MyTelescope's APIs, demand signals, forecasts, or any data served through them
  • The MyTelescope brand, trademarks, or logos

Use of the MyTelescope service requires a MyTelescope account and is governed by the MyTelescope Terms of Service and Privacy Policy. Tool calls made through this MCP server consume credits from your MyTelescope account.

See LICENSE for the full MIT text applied to this repository.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
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 →
Registryactive
TransportHTTP
UpdatedApr 23, 2026
View on GitHub