Inteligência Empresarial MCP

Entidades WikidataServidor MCP

Wikidata é uma base de conhecimento colaborativa com mais de 121 milhões de itens incluindo pessoas, organizações, locais e conceitos, essencial para resolução de entidades e grafos de conhecimento.

MCP Versão: 1.0.0 10 Ferramentas MCP Autenticação
Entidades Wikidata

URL base

https://mcp.pressmonitor.com/wikidata/v1

Autenticação

As chamadas MCP também usam tokens Bearer em solicitações JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

Descubra Ferramentas

Comece listando as ferramentas expostas pelo servidor MCP.

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

Sugerir Entidades

Sugerir Entidades

Argumentos

Nome Tipo Obrigatório Descrição
query_text string Sim Texto da consulta
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"suggest_entities","arguments":{"query_text":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool search_entities_by_label

Buscar Entidades por Rótulo

Buscar Entidades por Rótulo

Argumentos

Nome Tipo Obrigatório Descrição
query_text string Sim Texto da consulta
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_entities_by_label","arguments":{"query_text":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool search_entities_by_description

Buscar Entidades por Descrição

Buscar Entidades por Descrição

Argumentos

Nome Tipo Obrigatório Descrição
query_text string Sim Texto da consulta
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_entities_by_description","arguments":{"query_text":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool search_entities_by_type

Buscar Entidades por Tipo

Buscar Entidades por Tipo

Argumentos

Nome Tipo Obrigatório Descrição
type string Sim Tipo
query_text string Não Texto da consulta
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_entities_by_type","arguments":{"type":"SOME_STRING_VALUE","query_text":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool search_entities_by_claim_value

Buscar Entidades por Valor da Afirmativa

Buscar Entidades por Valor da Afirmativa

Argumentos

Nome Tipo Obrigatório Descrição
property string Sim Propriedade
value string Não Valor
mode string Não Modo
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_entities_by_claim_value","arguments":{"property":"SOME_STRING_VALUE","value":"SOME_STRING_VALUE","mode":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool search_entities_by_property

Buscar Entidades por Propriedade

Buscar Entidades por Propriedade

Argumentos

Nome Tipo Obrigatório Descrição
property string Sim Propriedade
value string Não Valor
qualifier string Não Qualificador
rank string Não Hierarquia
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_entities_by_property","arguments":{"property":"SOME_STRING_VALUE","value":"SOME_STRING_VALUE","qualifier":"SOME_STRING_VALUE","rank":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool search_entities_by_date_range

Buscar Entidades por Intervalo de Datas

Buscar Entidades por Intervalo de Datas

Argumentos

Nome Tipo Obrigatório Descrição
property string Sim Propriedade
from string Não De
to string Não Até
value string Não Valor
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_entities_by_date_range","arguments":{"property":"SOME_STRING_VALUE","from":"SOME_STRING_VALUE","to":"SOME_STRING_VALUE","value":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool get_entity_by_id

Obter Entidade por Id

Obter Entidade por Id

Argumentos

Nome Tipo Obrigatório Descrição
wikidata_id string Sim Id do Wikidata
lang string Não Idioma

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_entity_by_id","arguments":{"wikidata_id":"SOME_STRING_VALUE","lang":"en"}}}'
tool get_entity_claims

Obter Afirmativas da Entidade

Obter Afirmativas da Entidade

Argumentos

Nome Tipo Obrigatório Descrição
wikidata_id string Sim Id do Wikidata
lang string Não Idioma
limit string Não Limite
offset string Não Deslocamento

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_entity_claims","arguments":{"wikidata_id":"SOME_STRING_VALUE","lang":"en","limit":"SOME_STRING_VALUE","offset":"SOME_STRING_VALUE"}}}'
tool get_properties

Obter Propriedades

Obter Propriedades

Exemplos de Código

curl -X POST \ 'https://mcp.pressmonitor.com/wikidata/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_properties","arguments":[]}}'