gtm-mcp-server

作者 paolobietolini已验证

An MCP server for Google Tag Manager. Connect it to your LLM, authenticate once, and start managing GTM through natural language.

129
Stars
24
Forks
Go
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/paolobietolini/gtm-mcp-server

快速入门

使用 gtm-mcp-server 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

GTM MCP Server

License Go MCP Claude ChatGPT Gemini Cursor Docker GitHub stars

An AI assistant can control your Google Tag Manager containers.

The server connects an AI assistant to the Google Tag Manager API. You give instructions in usual language. The assistant creates tags, examines configurations, writes tracking plans, and publishes changes.

URL: https://mcp.gtmeditor.com


Table of Contents


Supported AI Clients

ClientTransportAuthenticationStatus
Claude (Web and Desktop)Streamable HTTPOAuth 2.1 and PKCESupported
Claude Code (CLI)Streamable HTTPOAuth 2.1 and PKCESupported
ChatGPTStreamable HTTPOAuth 2.1 and PKCESupported
Gemini CLIStreamable HTTPOAuth 2.1, PKCE and DCRSupported
CursorStreamable HTTPOAuth 2.1 and PKCESupported

The server does not require a specified client. Each MCP client that has OAuth 2.1 with PKCE on an HTTP transport can connect to the server. This includes clients with Dynamic Client Registration (RFC 7591) and clients without it.


What You Can Do

Give these instructions to your AI assistant:

  • "List all my GTM containers"
  • "Create a GA4 event tag for form submissions"
  • "Examine this container for problems and duplicates"
  • "Write a tracking plan document for the marketing team"
  • "Set up ecommerce tracking for purchases"
  • "Publish the changes"

You do not use the GTM interface for these tasks. You do not copy configurations manually. You give the instruction in usual language.


Quick Start

Claude (Web and Desktop)

For Claude.ai:

  1. Select Settings, then Connectors, then Add Custom Connector.
  2. Type this URL: https://mcp.gtmeditor.com
  3. Click Add.
  4. Sign in with your Google account.

For Claude Code (CLI), use this command:

claude mcp add -t http gtm https://mcp.gtmeditor.com

ChatGPT

  1. Go to the OpenAI Apps Platform.
  2. Add an MCP integration with this URL: https://mcp.gtmeditor.com
  3. Give permission with your Google account.

Gemini CLI

gemini mcp add --transport http --url https://mcp.gtmeditor.com gtm

Cursor

  1. Open Settings, then MCP.
  2. Click Add new MCP server.
  3. Set the type to URL.
  4. Type this URL: https://mcp.gtmeditor.com/authorize
  5. Give permission with your Google account.

As an alternative, add this configuration to your .cursor/mcp.json file:

{
  "mcpServers": {
    "gtm": {
      "url": "https://mcp.gtmeditor.com/authorize"
    }
  }
}

Functions

Tag Control

The server creates and changes all GTM tag types:

  • GA4 configuration and events. Set up Google Analytics 4 with the correct measurement IDs.
  • Ecommerce tracking. Use purchase, add-to-cart, and view-item events.
  • Custom HTML. Add scripts, pixels, and custom code.
  • Custom image. Add tracking pixels with cache prevention.

Trigger Control

The server creates triggers for these conditions:

  • Page views on all pages or on specified URLs
  • Custom dataLayer events
  • Clicks
  • Form submissions
  • Timers
  • Trigger groups for complex conditions

Container Operations

  • Read accounts, containers, and workspaces.
  • Create a version from the changes in a workspace.
  • Publish a version to make it live.
  • Put items in folders.
  • Enable or disable the built-in variables.

Server-Side Containers

The server has full support for server-side GTM containers:

  • Clients. Create, change, and delete server-side clients. The GA4 client is an example.
  • Transformations. Control event parameters with allow, exclude, and augment rules.

Community Template Gallery

The server imports templates from the Google Community Template Gallery. Give instructions such as these:

  • "Import the iubenda cookie consent template"
  • "Add Cookiebot to my container"
  • "Set up Facebook Pixel with the gallery template"

The AI assistant finds the template and its GitHub repository. Then the assistant imports the template automatically.

AI Workflows

Container examination. Give the instruction "Examine my container for problems". The assistant examines the workspace for these conditions:

  • Names that do not agree
  • Tags that occur more than once
  • Triggers that no tag uses
  • Risks to security
  • Configurations that do not obey the best practices

Tracking plan. Give the instruction "Write a tracking plan". The assistant writes a markdown document with this content:

  • All events and their triggers
  • The necessary dataLayer values
  • The definitions of the variables
  • Notes about the implementation

GA4 recommendations. Give the instruction "Help me set up GA4 for ecommerce". The assistant recommends the tags, the triggers, the necessary variables, and the dataLayer code.


Examples of Use

Make a Complete Tracking Setup

The assistant can make a full GA4 ecommerce implementation. Give the instruction "Set up GA4 ecommerce tracking for my store". The assistant then does these steps:

  1. It creates 12 tags or more. These include the configuration tag and all the ecommerce event tags.
  2. It creates one trigger for each dataLayer event.
  3. It creates dataLayer variables for the items, the currency, the value, and the transaction ID.
  4. It obeys the Google recommendations for event names and parameters.

Add Consent Control

You can connect privacy tools such as OneTrust to your tracking. Give the instruction "Make GA4 fire only when the user gives consent for analytics". The assistant then does these steps:

  1. It creates the variables that read the consent.
  2. It creates the related triggers.
  3. It changes the applicable tags.

Change Many Items

You can control containers that have many items. Give instructions such as these:

  • "Add the prefix 'ecom -' to all ecommerce triggers"
  • "Change all tags to use a measurement ID variable"

The assistant can change or move many items in one operation.

Make Custom Variables

You can make complex tracking logic. Give instructions such as these:

  • "Create a variable that gives the local time"
  • "Add a custom parameter to the purchase tag"

The assistant makes custom JavaScript variables and dataLayer variables.

Use by an Agency

  • Control the containers of more than one client.
  • Use the same implementation for all clients.
  • Set up a new project quickly.
  • Make a version and publish the changes safely.

How the Server Operates

The server connects AI assistants to the Google Tag Manager API. It uses the Model Context Protocol. When you give an instruction, the server does these steps:

  1. It authenticates you with your Google account through OAuth 2.1.
  2. It reads the configuration of your container.
  3. It makes the changes that you request.
  4. It asks for your approval before a destructive operation.

The server does not keep your Google password. The server uses tokens. You can cancel a token at any time from your Google account.


Safety Functions

  • The server asks for approval before a deletion or a publication.
  • The server changes only the workspace. No change is live until you publish it.
  • The server makes a version before each publication.
  • The server writes a log of the changes.

Comparison with Other GTM MCP Servers

More than one MCP server for Google Tag Manager is available. The most usual alternative is stape-io/google-tag-manager-mcp-server. The two projects are different in their design. This section gives the facts. It does not say that one project is better than the other. Use the facts to select the server that agrees with your conditions.

The data is correct on 21 August 2026.

Design and Distribution

ItemThis serverstape-io
LanguageGoTypeScript
DistributionOne binary, or a Docker imagenpm packages, and a Cloudflare Worker
Hosted servermcp.gtmeditor.comgtm-mcp.stape.ai
Local operationSelf-hosted HTTP servernpx CLI on stdio, or a self-hosted worker
TransportsStreamable HTTPStreamable HTTP, and stdio
LicenseBSD-3-ClauseApache-2.0

A local CLI on stdio keeps the credentials on your computer. This server does not have a stdio mode. If you must not send credentials to a server, the stape-io CLI obeys that condition and this server does not.

Tool Design

ItemThis serverstape-io
Number of tools5018
Tool designOne tool for each operationOne tool for each resource, with an action parameter
Examplecreate_tag, list_tags, delete_taggtm_tag with action: "create"

Each design has an effect. 50 tools use more of the tool budget of the model. Some clients also have a limit on the length of the server name plus the tool name. But each tool has a schema for one operation only, and the parameters that this operation needs are mandatory.

18 tools use less of the tool budget. But one schema must serve six operations. Thus almost all parameters are optional, and the server examines them when it receives the request.

MCP Functions

ItemThis serverstape-io
ToolsYesYes
Resources160
Prompts60
Best-practice documents4, supplied as resources0

This server supplies GTM rules as MCP resources at gtm://best-practices. An AI assistant can read these rules before it makes a change. The topics are names and organization, the safe-edit workflow, GA4 and consent, and server-side containers. The stape-io server supplies tools only.

Authentication

ItemThis serverstape-io
Authentication to the serverOAuth 2.1 authorization server in the projectGoogle OAuth on the hosted worker
Dynamic Client Registration (RFC 7591)YesNot supplied
Client ID Metadata DocumentsYesNot supplied
Protected resource metadata (RFC 9728)YesNot supplied
Token persistence after a restartYes, with TOKEN_STORE_PATHNot applicable to the CLI
Machine-to-machine accessYes, with an API key and a service accountYes, with a service account key in the CLI
Credentials for the local modeNot applicableService account key, or refresh token

Coverage of the GTM API

The stape-io server has more of the GTM API. It has these resources, and this server does not have them:

  • Destinations
  • Environments
  • Google tag configurations (gtag_config)
  • User permissions
  • Zones
  • Version headers

The stape-io server also has these operations, and this server does not have them: container.combine, container.lookup, container.snippet, version.live, version.undelete, workspace.sync, workspace.quickPreview, workspace.resolveConflict, and revert on the applicable resources.

This server has these operations, and the stape-io server does not have them:

  • Import of a template from the Community Template Gallery
  • Parameter examples for tags and triggers (get_tag_templates and get_trigger_templates)

Both servers have accounts, containers, workspaces, tags, triggers, variables, built-in variables, folders, clients, transformations, templates, versions, and the status of a workspace.

Summary of the Differences

  • If you need the maximum coverage of the GTM API, or a local stdio mode, examine the stape-io server.
  • If you need MCP resources and prompts, built-in best-practice documents, or an OAuth authorization server with Dynamic Client Registration, examine this server.

Self-Hosting

You can operate your own instance of the server.

Service Account Mode (S2S)

A self-hosted server can use a Google Service Account. Then all the members of your team have access through that one account. The members do not need their own GTM permissions.

Operation:

  • The server authenticates to Google Tag Manager with the Service Account.
  • The members of the team connect with an API key that they share.
  • The AI clients do one OAuth sign-in to the server. All GTM operations then use the Service Account.
  • Programs, scripts, and CI/CD systems do not use OAuth. They use the API key.

Setup:

  1. Go to the Google Cloud Console. Select IAM and Admin, then Service Accounts. Create a Service Account.
  2. Go to Google Tag Manager. Select Account, then Admin, then User Management. Add the email address of the Service Account as an Account Administrator.
  3. Download the JSON key file.
  4. Configure the server:
SERVICE_ACCOUNT_API_KEY=$(openssl rand -hex 32)   # give this key to your team
GOOGLE_SERVICE_ACCOUNT_KEY_JSON=$(cat key.json)   # the content of the JSON file
go run main.go

On Google Cloud Run, GKE, or Compute Engine, do not set GOOGLE_SERVICE_ACCOUNT_KEY_JSON. The server uses Workload Identity automatically.

Connection from Claude Code:

Set the API key as a header. Claude Code then uses the S2S mode automatically.

{
  "mcpServers": {
    "gtm": {
      "type": "http",
      "url": "http://your-server:8080",
      "headers": {
        "Authorization": "Bearer your-api-key"
      }
    }
  }
}

Access from a program:

An HTTP client can send requests to the server directly. A browser and an OAuth flow are not necessary.

curl -H "Authorization: Bearer your-api-key" \
     -H "Content-Type: application/json" \
     http://your-server:8080/mcp \
     -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'

The file examples/gtm_agent.py contains a complete Python agent. The agent uses Claude and the API key to control GTM.


Docker Setup

git clone https://github.com/paolobietolini/gtm-mcp-server.git
cd gtm-mcp-server

# Make the .env file
cat > .env << 'EOF'
GOOGLE_CLIENT_ID=your-client-id.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=your-client-secret
JWT_SECRET=$(openssl rand -base64 32)
BASE_URL=http://localhost:8080
EOF

# Start the server
docker compose up -d

# Add the server to Claude
claude mcp add -t http gtm http://localhost:8080

Reverse Proxy (TRUST_PROXY)

A reverse proxy can be in front of the server. Caddy, nginx, and Cloudflare are examples. Set TRUST_PROXY=true for this condition. The rate limiter then uses the real IP address of the client from the X-Forwarded-For header. If you do not set this variable, the rate limiter uses the address of the proxy.

TRUST_PROXY=true

The Docker Compose configuration sets this variable automatically, because the container operates behind Caddy.

Caution: If you start the binary without a proxy, do not set this variable, or set it to false. If you set it to true without a proxy, a client can give a false IP address. The client can then get more requests than the rate limit permits.

Docker-to-Docker Connections

A different container can connect to the MCP server with an internal Docker network name. Add the ALLOWED_HOSTS variable to your .env file for this condition:

ALLOWED_HOSTS=gtm-mcp:8080

The server then finds its URL dynamically, but only for the internal host names that you list. Other host names cannot change the URL. Thus an attacker cannot use the Host header to change the URL.

Token Persistence (TOKEN_STORE_PATH)

The server keeps the tokens in memory only, if you do not set TOKEN_STORE_PATH. Thus each restart of the server disconnects all users. Each user must then authenticate again.

To keep the sessions after a restart, set TOKEN_STORE_PATH to a file on a persistent volume:

TOKEN_STORE_PATH=/data/tokens.json

The server writes the file with the permissions 0600. The file contains refresh tokens. Thus you must keep the volume secret.

The directory must be writable by the user that operates the server. The Docker image operates as the user appuser. The image supplies the directory /data with the owner appuser and the mode 0700. If the server makes the directory itself, the directory gets the same mode.

Caution: The token store fails closed. If the server cannot make or read the file, the server stops at start-up. The server does not discard the sessions without a message.

Bearer Renewal Cap (AUTH_AUTO_REFRESH_MAX_AGE)

A client can send a bearer token that is expired. The server then refreshes the Google token and extends the same bearer token. The session continues, and the user does not sign in again.

The server does not replace the bearer token in this operation. Thus the expiry time of the bearer token is not a limit. An expired bearer token is sufficient to get a new period, while the entry is in the store.

AUTH_AUTO_REFRESH_MAX_AGE gives a limit to this sequence. The limit is the total age of the token. The default value is 168h, which is 7 days.

AUTH_AUTO_REFRESH_MAX_AGE=168h

After the limit, the server sends the response 401 and the WWW-Authenticate header of RFC 9728. The server does not extend the token. The client must then use the standard OAuth refresh grant. That grant replaces the two credentials and makes a new entry with a new age. Thus a correct client continues without a sign-in, and only the sequence of an unauthorized token stops.

A client without the refresh grant must sign in again one time in each limit period. Without this limit, the client signs in again one time in each ACCESS_TOKEN_TTL period.

To disable the limit, set the value to 0. The renewal sequence then has no limit.

The server writes the log event auth_auto_refresh_capped for each refusal. The event contains the client ID and the age of the refused sequence.

Google Cloud Setup

  1. Go to the Google Cloud Console.
  2. Enable the Tag Manager API.
  3. Create OAuth 2.0 credentials for a web application.
  4. Add these redirect URIs:
    https://claude.ai/api/mcp/auth_callback
    https://claude.com/api/mcp/auth_callback
    https://chatgpt.com/connector_platform_oauth_redirect
    https://your-domain.com/oauth/callback
    

Available Tools

Read Operations

ToolDescription
list_accountsGives all the GTM accounts
list_containersGives the containers in an account
list_workspacesGives the workspaces in a container
list_tagsGives all the tags in a workspace
get_tagGives the data of one tag
list_triggersGives all the triggers
get_triggerGives the data of one trigger
list_variablesGives all the variables
get_variableGives the data of one variable
list_foldersGives the folders in a workspace
get_folder_entitiesGives the tags, triggers, and variables in a folder
list_built_in_variablesGives the enabled built-in variables in a workspace

Utility

ToolDescription
pingTests the connection to the server
auth_statusGives the status of the authentication

Write Operations

ToolDescription
update_accountChanges the name of a GTM account
create_containerCreates a container in an account
update_containerChanges the name of a container. Keeps the usage context, the domain, and the notes
delete_containerDeletes a container. Asks for approval
create_workspaceCreates a workspace in a container
create_tagCreates a tag
update_tagChanges a tag
delete_tagDeletes a tag. Asks for approval
create_triggerCreates a trigger
update_triggerChanges a trigger
delete_triggerDeletes a trigger. Asks for approval
create_variableCreates a variable
update_variableChanges a variable
delete_variableDeletes a variable. Asks for approval
enable_built_in_variablesEnables built-in variable types in a workspace
disable_built_in_variablesDisables built-in variable types. Asks for approval

Server-Side Container Tools

ToolDescription
list_clientsGives all the clients in a workspace
get_clientGives the data of one client
create_clientCreates a client
update_clientChanges a client
delete_clientDeletes a client. Asks for approval
list_transformationsGives all the transformations in a workspace
get_transformationGives the data of one transformation
create_transformationCreates a transformation
update_transformationChanges a transformation
delete_transformationDeletes a transformation. Asks for approval

Publication

ToolDescription
get_workspace_statusGives the changes and the merge conflicts before a version
list_versionsGives all the container versions with the counts of the items
create_versionCreates a version from the changes in a workspace
publish_versionPublishes a version. Asks for approval

Templates

ToolDescription
get_tag_templatesGives parameter examples for GA4 tags and HTML tags
get_trigger_templatesGives configuration examples for triggers
list_templatesGives the custom templates in a workspace
get_templateGives the data of one template with its code
create_templateCreates a custom template from .tpl code
update_templateChanges a custom template
delete_templateDeletes a custom template. Asks for approval
import_gallery_templateImports a template from the Community Gallery

Resources and Prompts

Resources

The server gives access to GTM data through these URIs:

gtm://accounts
gtm://accounts/{id}/containers
gtm://accounts/{id}/containers/{id}/workspaces
gtm://accounts/.../workspaces/{id}/tags
gtm://accounts/.../workspaces/{id}/triggers
gtm://accounts/.../workspaces/{id}/variables

The server also gives best-practice documents. These documents are markdown text. Authentication is not necessary to read them.

gtm://best-practices                        # The index of all the documents
gtm://best-practices/naming-organization    # Names, folders, and unused items
gtm://best-practices/safe-edit-workflow     # Workspace, difference, version, publication
gtm://best-practices/ga4-consent            # GA4 patterns and consent mode v2
gtm://best-practices/server-side            # Clients, transformations, PII, first-party domains

Prompts

PromptDescription
audit_containerExamines a container against the best practices
best_practices_reviewGives a result of pass, warning, or failure for each category, with the corrections
plan_safe_editGives the steps for a change that obeys the safe-edit workflow
generate_tracking_planWrites a tracking plan in markdown
suggest_ga4_setupGives recommendations for a GA4 implementation
find_gallery_templateGives the steps to find and import a Community Gallery template

More Context for AI Assistants

The server gives two resources that help an AI assistant. One resource is for each LLM or agent. The other resource is for Claude Code users. The server also gives GTM rules as MCP resources at gtm://best-practices. Each connected agent can read these rules before it makes a change.

llms.txt for Each LLM or Agent

The server supplies an llms.txt file. Each LLM or agent can read this file to get context. The file contains the GTM hierarchy, all the tools, the usual workflows, the safety rules, and the format of the GA4 parameters.

https://mcp.gtmeditor.com/llms.txt

The file obeys the llms.txt standard. Agent systems with support for llms.txt read this file automatically. You can also read the file manually, or put it in a system prompt for your own integration.

Claude Code Skill

Claude Code users can install the GTM MCP skill. The skill gives workflows, the patterns to obey, and the patterns to prevent.

Use this command to install the skill:

curl -sL https://github.com/paolobietolini/gtm-mcp-server/archive/main.tar.gz | tar xz && \
  mkdir -p ~/.claude/skills && \
  cp -r gtm-mcp-server-main/skills/gtm-mcp ~/.claude/skills/ && \
  rm -rf gtm-mcp-server-main

As an alternative, clone the repository and copy the directory:

git clone https://github.com/paolobietolini/gtm-mcp-server.git
cp -r gtm-mcp-server/skills/gtm-mcp ~/.claude/skills/

The skill teaches Claude to find the IDs and to create tags with the correct parameters. It also teaches Claude to obey the publication workflow and to prevent the usual errors.

GTM API Skill

The GTM API skill gives more context about the API. It contains the parameter schemas, the validation rules, and request templates for all the entity types.

For Claude Code:

curl -sL https://github.com/paolobietolini/gtm-api-for-llms/archive/main.tar.gz | tar xz && \
  mkdir -p ~/.claude/skills && \
  cp -r gtm-api-for-llms-main/skills/gtm-api ~/.claude/skills/ && \
  rm -rf gtm-api-for-llms-main

For OpenAI Codex:

curl -sL https://github.com/paolobietolini/gtm-api-for-llms/archive/main.tar.gz | tar xz && \
  mkdir -p ~/.codex/skills && \
  cp -r gtm-api-for-llms-main/skills/gtm-api ~/.codex/skills/ && \
  rm -rf gtm-api-for-llms-main

The GTM API for LLMs repository contains documentation for LLMs. It has request templates, validation rules, workflow algorithms, and the full schemas of all the GTM entity types. The server-side container types are included.


Architecture

  • Protocol: Model Context Protocol (MCP) on HTTP
  • Authentication: OAuth 2.1 with PKCE
  • Standards: RFC 8414, RFC 7591, RFC 9728

Known Problems

The GTM API removes autoEventFilter

The autoEventFilter field sets the conditions for "Some Link Clicks" and "Some Form Submissions". The Google Tag Manager API removes this field without a message. This occurs when you create or change a linkClick, click, or formSubmission trigger through the API. The API sends the response 200 OK with a new fingerprint, but it does not keep the autoEventFilter field.

Tests at the HTTP level show this behavior. The request contains the correct JSON, but the response of Google does not contain the field. The filter field and the customEventFilter field operate correctly.

Alternative procedure: Set the autoEventFilter conditions manually in the GTM web interface. The MCP server can read a trigger that has an autoEventFilter field from the interface.

Status: #33


Links


Author

Paolo Bietolini

mcp@paolobietolini.com


License

BSD-3-Clause

常见问题

What is gtm-mcp-server?

gtm-mcp-server is an open-source mcp servers skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by paolobietolini. An MCP server for Google Tag Manager. Connect it to your LLM, authenticate once, and start managing GTM through natural language. It has 129 GitHub stars.

Is gtm-mcp-server safe to use?

Yes. gtm-mcp-server passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install gtm-mcp-server?

Clone the repository with "git clone https://github.com/paolobietolini/gtm-mcp-server" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is gtm-mcp-server written in?

gtm-mcp-server is primarily written in Go. It is open-source under paolobietolini on GitHub, so you can review or fork the full source.

Are there alternatives to gtm-mcp-server?

Yes. SkillsLLM lists many other MCP Servers skills you can browse and compare side by side. Open the MCP Servers category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh gtm-mcp-server against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

Scrapling

by D4Vinci

🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!

75,9137,581Python
MCP 服务器
查看详情

TrendRadar

by sansan0

⭐AI-driven public opinion & trend monitor with multi-platform aggregation, RSS, and smart alerts.🎯 告别信息过载,你的 AI 舆情监控助手与热点筛选工具!聚合多平台热点 + RSS 订阅,支持关键词精准筛选。AI 智能筛选新闻 + AI 翻译 + AI 分析简报直推手机,也支持接入 MCP 架构,赋能 AI 自然语言对话分析、情感洞察与趋势预测等。支持 Docker ,数据本地/云端自持。集成微信/飞书/钉钉/Telegram/邮件/ntfy/bark/slack 等渠道智能推送。

61,65224,883Python
MCP 服务器
查看详情

context7

by upstash

Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors

61,0602,938TypeScript
MCP 服务器
查看详情

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph — average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

39,9393,219C
MCP 服务器
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情