MCP
Veille LinkedIn pour les équipes commerciales, RH et marketing MCP Server
Outils MCP pour LinkedIn
URL de base
https://mcp.pressmonitor.com/linkedin/v1 Authentification
Les appels MCP utilisent également des jetons Bearer via des requêtes JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN Découvrir les outils
Commencez par lister les outils exposés par le serveur 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()) outil
activity_time Heure d'activité
Heure d'activité
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| linkedin_url | string | Oui | URL LinkedIn |
Exemples de code
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()) outil
company Entreprise
Entreprise
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| linkedin_url | string | Oui | URL LinkedIn |
Exemples de code
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()) outil
company_posts Publications de l'entreprise
Publications de l'entreprise
Exemples de code
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()) outil
companyby_domain Entreprise par domaine
Entreprise par domaine
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| domain | string | Oui | Domaine |
Exemples de code
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()) outil
get_posts Récupérer les publications
Récupérer les publications
Exemples de code
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()) outil
posts Publications
Publications
Exemples de code
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()) outil
profile Profil
Profil
Exemples de code
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()) outil
search_posts Rechercher des publications
Rechercher des publications
Exemples de code
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())