MCP
LinkedIn Intelligence for Sales, Talent, and Market Teams MCP Server
MCP tools for LinkedIn
Base URL
https://mcp.pressmonitor.com/linkedin/v1 Authentication
MCP calls also use Bearer tokens over JSON-RPC 2.0 requests.
Authorization: Bearer YOUR_TOKEN Discover Tools
Start by listing the tools exposed by the MCP server.
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
Activity Time
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| linkedin_url | string | Yes | Linkedin url |
Code Examples
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
Company
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| linkedin_url | string | Yes | Linkedin url |
Code Examples
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
Company Posts
Code Examples
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
| Name | Type | Required | Description |
|---|---|---|---|
| domain | string | Yes | Domain |
Code Examples
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
Get Posts
Code Examples
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
Posts
Code Examples
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
Profile
Code Examples
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
Search Posts
Code Examples
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())