बाजार इंटेलिजेंस MCP
फ्रैंकफर्ट स्टॉक एक्सचेंज MCP सर्वर
फ्रैंकफर्ट में शेयर, फंड, ईटीएफ, बांड, सर्टिफिकेट और अन्य सूचीबद्ध प्रतिभूतियों के लिए जर्मन नियंत्रित एक्सचेंज।
MCP संस्करण: 1.0.0 3 MCP टूल्स प्रमाणीकरण
बेस URL
https://mcp.pressmonitor.com/ प्रमाणीकरण
MCP कॉल भी JSON-RPC 2.0 अनुरोधों पर Bearer टोकन का उपयोग करती हैं।
Authorization: Bearer YOUR_TOKEN टूल्स खोजें
MCP सर्वर द्वारा प्रदर्शित टूल्स की सूची बनाकर शुरू करें।
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -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/', { 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/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
news_headlines समाचार शीर्षक प्राप्त करें
समाचार शीर्षक प्राप्त करें
तर्क
| नाम | प्रकार | आवश्यक | विवरण |
|---|---|---|---|
| code | string | हां | इकाई कोड (जैसे, टिकटिंग प्रतीक, उद्योग कोड) |
| lang_code | string | नहीं | भाषा कोड द्वारा फ़िल्टर करें (ISO 639-1) |
| country_code | string | नहीं | देश कोड द्वारा फ़िल्टर करें (ISO 3166-1 alpha-2) |
| count | string | नहीं | परिणामों की संख्या वापस करें |
| cursor | string | नहीं | पृष्ठांकन कर्सर (search_after के विकल्प के रूप में) |
कोड उदाहरण
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_headlines","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_headlines", "arguments": { "code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "news_headlines", "arguments": { "code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
news_briefs समाचार सारांश प्राप्त करें
समाचार सारांश प्राप्त करें
तर्क
| नाम | प्रकार | आवश्यक | विवरण |
|---|---|---|---|
| code | string | हां | इकाई कोड (जैसे, टिकटिंग प्रतीक, उद्योग कोड) |
| lang_code | string | नहीं | भाषा कोड द्वारा फ़िल्टर करें (ISO 639-1) |
| country_code | string | नहीं | देश कोड द्वारा फ़िल्टर करें (ISO 3166-1 alpha-2) |
| count | string | नहीं | परिणामों की संख्या वापस करें |
| cursor | string | नहीं | पृष्ठांकन कर्सर (search_after के विकल्प के रूप में) |
कोड उदाहरण
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_briefs","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_briefs", "arguments": { "code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "news_briefs", "arguments": { "code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json()) tool
news_fulltext पूरा समाचार टेक्स्ट प्राप्त करें
पूरा समाचार टेक्स्ट प्राप्त करें
तर्क
| नाम | प्रकार | आवश्यक | विवरण |
|---|---|---|---|
| code | string | हां | इकाई कोड (जैसे, टिकटिंग प्रतीक, उद्योग कोड) |
| lang_code | string | नहीं | भाषा कोड द्वारा फ़िल्टर करें (ISO 639-1) |
| country_code | string | नहीं | देश कोड द्वारा फ़िल्टर करें (ISO 3166-1 alpha-2) |
| count | string | नहीं | परिणामों की संख्या वापस करें |
| cursor | string | नहीं | पृष्ठांकन कर्सर (search_after के विकल्प के रूप में) |
कोड उदाहरण
curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_fulltext","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}' const payload = { "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "news_fulltext", "arguments": { "code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } }; const response = await fetch('https://mcp.pressmonitor.com/', { 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": "news_fulltext", "arguments": { "code": "SOME_STRING_VALUE", "lang_code": "SOME_STRING_VALUE", "country_code": "SOME_STRING_VALUE", "count": 20, "cursor": "NEXT_CURSOR" } } } response = requests.post( 'https://mcp.pressmonitor.com/', headers={ 'Content-Type': 'application/json', 'Authorization': 'Bearer YOUR_TOKEN' }, json=payload, ) print(response.json())