プラットフォームインテリジェンス MCP
LinkedInMCPサーバー
LinkedInは、プロファイル、企業ページ、投稿、求人、専門知識を使用する13億人近くのメンバーがいるため、B2Bマーケティング、採用、経営者の可視性、リード生成に重要です。
MCP バージョン: 1.0.0 9 MCPツール 認証
ベース URL
https://mcp.pressmonitor.com/linkedin/v1 認証
MCP呼び出しは、JSON-RPC 2.0リクエストを介してBearerトークンを使用します。
Authorization: Bearer YOUR_TOKEN ツールを探す
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 活動時間
活動時間
引数
| 名前 | タイプ | 必須 | 説明 |
|---|---|---|---|
| linkedin_url | string | はい | LinkedIn URL |
コード例
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 企業
企業
引数
| 名前 | タイプ | 必須 | 説明 |
|---|---|---|---|
| linkedin_url | string | はい | LinkedIn URL |
コード例
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 企業の投稿
企業の投稿
コード例
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 ドメイン別企業
ドメイン別企業
引数
| 名前 | タイプ | 必須 | 説明 |
|---|---|---|---|
| domain | string | はい | ドメイン |
コード例
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 投稿を取得
投稿を取得
コード例
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 投稿
投稿
コード例
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 プロフィール
プロフィール
コード例
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 投稿を検索
投稿を検索
コード例
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())