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

LogoKit Brand & Company Data

logo-kit/logokit-mcp
authHTTPregistry active
Summary

Wraps LogoKit's company database so your AI agent can look up brand data by domain or stock ticker. Expose two tools: get_brand_by_domain takes a website like stripe.com, get_brand_by_ticker accepts AAPL or any ISIN/CUSIP/SEDOL/WKN. Both return structured records with industry classification, headcount range, founding year, HQ location, social profiles, brand colors, and logo URLs. Requires a paid LogoKit plan and a secret API key passed as a Bearer token. Works over streamable HTTP, so it drops into Cursor, Claude Code, and ChatGPT connectors without a local bridge. Reach for it when you're building research tools, CRM enrichment flows, or anything that needs to resolve a company name into clean, structured attributes.

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 →

LogoKit MCP Server

Brand & company data for AI agents — by domain or stock ticker.

The LogoKit MCP server connects Claude, Cursor, ChatGPT, and any MCP-compatible client to LogoKit's company database. Resolve any company by website domain or by security identifier and get back a structured record: industry classification, employee range, founding year, headquarters, social profiles, brand colors, and logos.

  • Endpoint: https://mcp.logokit.com/mcp
  • Transport: MCP Streamable HTTP
  • Auth: Authorization: Bearer sk_pa_… (secret API key, paid plans)
  • Landing page: https://logokit.com/mcp
  • Docs: https://docs.logokit.com/mcp/overview

Tools

ToolArgumentReturns
get_brand_by_domaina website domain — e.g. stripe.comfull Brand Data record
get_brand_by_tickera ticker / ISIN / CUSIP / SEDOL / WKN — e.g. AAPL, US0378331005the same record

Only populated attributes are returned; empty fields are omitted from the response.

Authentication

Pass your LogoKit secret key as a Bearer token:

Authorization: Bearer sk_pa_YOUR_TOKEN

Secret keys (sk_pa_…) are available on the Startup, Scale, and Enterprise plans. Publishable keys (pk_*) are rejected, because MCP traffic is run by your agent rather than an end user's browser. Get a key at https://logokit.com/account/api-tokens. MCP requests count against your Brand Data API quota.

Install

Claude Code

claude mcp add --transport http logokit \
  https://mcp.logokit.com/mcp \
  --header "Authorization: Bearer sk_pa_YOUR_TOKEN"

Cursor, VS Code, Windsurf, and other HTTP clients

{
  "mcpServers": {
    "logokit": {
      "url": "https://mcp.logokit.com/mcp",
      "headers": { "Authorization": "Bearer sk_pa_YOUR_TOKEN" }
    }
  }
}

Claude Desktop

Claude Desktop's config only loads stdio servers, so bridge via mcp-remote (requires Node.js):

{
  "mcpServers": {
    "logokit": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.logokit.com/mcp",
        "--header",
        "Authorization: Bearer sk_pa_YOUR_TOKEN"
      ]
    }
  }
}

ChatGPT

Settings → Connectors → Advanced → enable Developer mode → Add custom connector:

  • MCP server URL: https://mcp.logokit.com/mcp
  • Authentication: Custom header → name Authorization, value Bearer sk_pa_YOUR_TOKEN

Connectors require a paid ChatGPT plan (Plus, Pro, Team, Business, Enterprise, or Edu).

Official MCP Registry

This repository holds the server.json used to publish the server to the official MCP Registry as com.logokit/brand-data. Publishing steps are in PUBLISHING.md.

License

MIT

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 →
Categories
Data & AnalyticsMedia & Entertainment
Registryactive
TransportHTTP
AuthRequired
UpdatedMay 25, 2026
View on GitHub

Related Data & Analytics MCP Servers

View all →
Google Sheets

com.mcparmory/google-sheets

Create, read, and modify spreadsheet data, formatting, and sheets
25
Google Sheets

domdomegg/google-sheets-mcp

Allow AI systems to read, write, and query spreadsheet data via Google Sheets.
2
Google Sheets Mcp

henilcalagiya/google-sheets-mcp

Powerful tools for automating Google Sheets using Model Context Protocol (MCP)
14
Futuristic Risk Intelligence

cct15/war-dashboard-data

Geopolitical conflict risk, political events, and maritime traffic data for AI agents
1
Mcp Google Sheets Full

moooonad/mcp-google-sheets-full

Full Google Sheets MCP: 26 tools + run_sheets_script escape hatch. User OAuth, no service account.
CSV to JSON API

io.github.br0ski777/csv-to-json

Parse CSV to JSON array. Auto-detect delimiter, headers. x402 micropayment.