Back to MCP directory
publicPublicdnsLocal runtime

media_kit_mcp_server

一个用于解析广告营销行业中Media Kit PDF文件关键内容的项目,通过集成MCP服务实现自动化处理。

article

README

🚀 解析 Media Kit PDF 文件

本项目专注于解析广告营销行业与不同资源联动时的 Media Kit PDF 文件关键内容,为行业数据处理提供便利。

🚀 快速开始

📦 安装指南

在项目根目录下,依次执行以下命令进行依赖安装和项目构建:

npm install
npm run build

💻 使用示例

基础用法

将 MCP 集成到 MCP 主机时,需要对配置文件进行相应设置。以下是配置文件示例:

{
  "mcpServers": {
    "media-kit-mcp": {
      "command": "node",
      "args": ["YOUR_MEDIA_KIT_MCP_SERVER_INDEX_FILE_ABSOLUTE_PATH"],
      "env": {
        "DEEP_SEEK_API_KEY": "YOUR_DEEP_SEEK_API_KEY"
      },
      "transport": "stdio",
      "enabled": true,
      "description": "用于解析广告营销行业与不同资源联动时 Media Kit PDF 文件的关键内容"
    }
  }
}

请将 YOUR_MEDIA_KIT_MCP_SERVER_INDEX_FILE_ABSOLUTE_PATH 替换为实际的 Media Kit MCP 服务器索引文件的绝对路径,将 YOUR_DEEP_SEEK_API_KEY 替换为你的 DeepSeek API 密钥。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client