商业智能 MCP

IPTC媒体主题MCP服务器

IPTC媒体主题是一个包含超过1200个术语的媒体分类法,支持13种语言,用于分类新闻和文本主题。对于编辑系统、档案管理、搜索、元数据标记和新闻工作流程至关重要。

MCP 版本: 1.0.0 3 MCP工具 身份验证
IPTC媒体主题

基本网址

https://mcp.pressmonitor.com/

身份验证

MCP 调用也使用 Bearer 令牌通过 JSON-RPC 2.0 请求。

Authorization: Bearer YOUR_TOKEN

发现工具

首先列出MCP服务器公开的工具。

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
tool news_headlines

获取新闻头条

获取新闻头条

参数

名称 类型 必填 描述
code string 实体代码(如股票代码,行业代码)
lang_code string 按语言代码过滤(ISO 639-1)
country_code string 按国家代码过滤(ISO 3166-1 alpha-2)
count string 返回结果数量
cursor string 分页游标(search_after的替代)

代码示例

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_headlines","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
tool news_briefs

获取新闻简报

获取新闻简报

参数

名称 类型 必填 描述
code string 实体代码(如股票代码,行业代码)
lang_code string 按语言代码过滤(ISO 639-1)
country_code string 按国家代码过滤(ISO 3166-1 alpha-2)
count string 返回结果数量
cursor string 分页游标(search_after的替代)

代码示例

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_briefs","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
tool news_fulltext

获取全文新闻

获取全文新闻

参数

名称 类型 必填 描述
code string 实体代码(如股票代码,行业代码)
lang_code string 按语言代码过滤(ISO 639-1)
country_code string 按国家代码过滤(ISO 3166-1 alpha-2)
count string 返回结果数量
cursor string 分页游标(search_after的替代)

代码示例

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_fulltext","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'