MCP
Intelligence LinkedIn pour ventes, talents et équipes marché MCP Server
Outils MCP pour LinkedIn
URL de base
https://mcp.pressmonitor.com/linkedin/v1 Authentification
Les appels MCP utilisent aussi un jeton Bearer avec des requetes JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN Decouvrir les outils
Commencez par lister les outils exposes 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()) tool
activity_time Activity Time
Activité Temps
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| linkedin_url | string | Oui | Linkedin url |
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()) tool
company Company
Entreprise
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| linkedin_url | string | Oui | Linkedin url |
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()) tool
company_posts Company Posts
Entreprise 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":"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 Companyby Domain
Companyby Domain
Arguments
| Nom | Type | Obligatoire | Description |
|---|---|---|---|
| domain | string | Oui | Domain |
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()) tool
get_posts Get Posts
Obtenir 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()) tool
posts Posts
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()) tool
profile Profile
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()) tool
search_posts Search Posts
Rechercher 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())