MCP
गूगल MCP Server
हर दिन करोड़ों लोग गूगल का उपयोग करते हैं ताकि वे वेब पृष्ठ, समाचार, छवियाँ, वीडियो और स्थानीय परिणाम खोज सकें, जो खोज्यता, प्रतिष्ठा प्रबंधन और मांग कैप्चर के लिए आवश्यक है।
MCP Version: 1.0.0 6 MCP Tools Authentication
Base URL
https://mcp.pressmonitor.com/mcp Authentication
MCP calls use Bearer tokens over JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN search_web
वेब खोजें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query_text | string | Yes | प्रश्न पाठ |
| lang_code | string | No | भाषा कोड |
| country_code | string | No | देश कोड |
| count | integer | No | वापस करने के लिए परिणामों की संख्या |
| safesearch | string | No | सुरक्षित खोज |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_web",
"arguments": {
"query_text": "VALUE"
}
},
"id": 1
}' search_news
समाचार खोजें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query_text | string | Yes | प्रश्न पाठ |
| lang_code | string | No | भाषा कोड |
| country_code | string | No | देश कोड |
| count | integer | No | वापस करने के लिए परिणामों की संख्या |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_news",
"arguments": {
"query_text": "VALUE"
}
},
"id": 1
}' search_images
छवि खोजें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query_text | string | Yes | प्रश्न पाठ |
| lang_code | string | No | भाषा कोड |
| country_code | string | No | देश कोड |
| count | integer | No | वापस करने के लिए परिणामों की संख्या |
| safesearch | string | No | सुरक्षित खोज |
| color | string | No | रंग |
| size | string | No | आकार |
| type_image | string | No | छवि प्रकार |
| layout | string | No | लेआउट |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_images",
"arguments": {
"query_text": "VALUE"
}
},
"id": 1
}' search_videos
वीडियो खोजें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query_text | string | Yes | प्रश्न पाठ |
| lang_code | string | No | भाषा कोड |
| country_code | string | No | देश कोड |
| count | integer | No | वापस करने के लिए परिणामों की संख्या |
| safesearch | string | No | सुरक्षित खोज |
| timelimit | string | No | समय सीमा |
| duration | string | No | अवधि |
| resolution | string | No | रेसोल्यूशन |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_videos",
"arguments": {
"query_text": "VALUE"
}
},
"id": 1
}' search_map
मानचित्र खोजें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query_text | string | Yes | प्रश्न पाठ |
| place | string | No | स्थान |
| street | string | No | सड़क |
| city | string | No | शहर |
| state | string | No | राज्य |
| country | string | No | देश |
| postalcode | string | No | डाक कोड |
| latitude | string | No | अक्षांश |
| longitude | string | No | देशांतर |
| radius | string | No | त्रिज्या |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_map",
"arguments": {
"query_text": "VALUE"
}
},
"id": 1
}' auto_complete
स्वतः पूर्ण करें
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| query_text | string | Yes | प्रश्न पाठ |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "auto_complete",
"arguments": {
"query_text": "VALUE"
}
},
"id": 1
}'