Inteligencia de Plataforma MCP
LinkedInServidor MCP
LinkedIn cuenta con casi 1.3 mil millones de miembros que utilizan perfiles, páginas de empresa, publicaciones, empleos y conocimientos profesionales, lo que lo convierte en una plataforma importante para el marketing B2B, la contratación, la visibilidad ejecutiva y la generación de leads.
MCP Versión: 1.0.0 9 Herramientas MCP Autenticación
URL base
https://mcp.pressmonitor.com/linkedin/v1 Autenticación
Las llamadas MCP también utilizan tokens Bearer sobre solicitudes JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN Descubrir Herramientas
Comienza enumerando las herramientas expuestas por el servidor MCP.
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'tools/list' }) }); console.log(await response.json()); import requests payload = { 'jsonrpc': '2.0', 'id': 1, 'method': 'tools/list' } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
activity_time Tiempo de Actividad
Tiempo de Actividad
Argumentos
| Nombre | Tipo | Requerido | Descripción |
|---|---|---|---|
| linkedin_url | string | Sí | URL de LinkedIn |
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"activity_time","arguments":{"linkedin_url":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "activity_time", "arguments": { "linkedin_url": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "activity_time", "arguments": { "linkedin_url": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
company Empresa
Empresa
Argumentos
| Nombre | Tipo | Requerido | Descripción |
|---|---|---|---|
| linkedin_url | string | Sí | URL de LinkedIn |
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"company","arguments":{"linkedin_url":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "company", "arguments": { "linkedin_url": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "company", "arguments": { "linkedin_url": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
company_posts Publicaciones de la Empresa
Publicaciones de la Empresa
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"company_posts","arguments":[]}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "company_posts", "arguments": [] } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "company_posts", "arguments": [] } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
companyby_domain Empresa por Dominio
Empresa por Dominio
Argumentos
| Nombre | Tipo | Requerido | Descripción |
|---|---|---|---|
| domain | string | Sí | Dominio |
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"companyby_domain","arguments":{"domain":"SOME_STRING_VALUE"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "companyby_domain", "arguments": { "domain": "SOME_STRING_VALUE" } } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "companyby_domain", "arguments": { "domain": "SOME_STRING_VALUE" } } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
get_posts Obtener Publicaciones
Obtener Publicaciones
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_posts","arguments":[]}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "get_posts", "arguments": [] } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "get_posts", "arguments": [] } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
posts Publicaciones
Publicaciones
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"posts","arguments":[]}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "posts", "arguments": [] } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "posts", "arguments": [] } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
profile Perfil
Perfil
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"profile","arguments":[]}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "profile", "arguments": [] } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "profile", "arguments": [] } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
search_posts Buscar Publicaciones
Buscar Publicaciones
Ejemplos de código
curl -X POST \ 'https://mcp.pressmonitor.com/linkedin/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_posts","arguments":[]}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_posts", "arguments": [] } }; const response = await fetch('https://mcp.pressmonitor.com/linkedin/v1', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, body: JSON.stringify(payload) }); console.log(await response.json()); import requests payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "search_posts", "arguments": [] } } response = requests.post( 'https://mcp.pressmonitor.com/linkedin/v1', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json())