Intelligence di mercato MCP

London Stock Exchange MTF Server MCP

Struttura di trading multilaterale del London Stock Exchange, supportando strumenti finanziari ammessi alla negoziazione al di fuori del mercato regolamentato principale.

MCP Versione: 1.0.0 3 Strumenti MCP Autenticazione
London Stock Exchange MTF

URL base

https://mcp.pressmonitor.com/

Autenticazione

Le chiamate MCP utilizzano anche Bearer token su richieste JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

Scopri strumenti

Inizia elencando gli strumenti esposti dal server 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"}'
tool news_headlines

Ottieni titoli di notizie

Ottieni titoli di notizie

Argomenti

Nome Tipo Obbligatorio Descrizione
code string Codice entità (es. simbolo ticker, codice industria)
lang_code string No Filtro per codice lingua (ISO 639-1)
country_code string No Filtro per codice paese (ISO 3166-1 alpha-2)
count string No Numero di risultati da restituire
cursor string No Cursore di paginazione (alternativa a search_after)

Esempi di codice

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"}}}'
tool news_briefs

Ottieni riepiloghi di notizie

Ottieni riepiloghi di notizie

Argomenti

Nome Tipo Obbligatorio Descrizione
code string Codice entità (es. simbolo ticker, codice industria)
lang_code string No Filtro per codice lingua (ISO 639-1)
country_code string No Filtro per codice paese (ISO 3166-1 alpha-2)
count string No Numero di risultati da restituire
cursor string No Cursore di paginazione (alternativa a search_after)

Esempi di codice

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"}}}'
tool news_fulltext

Ottieni notizie in testo completo

Ottieni notizie in testo completo

Argomenti

Nome Tipo Obbligatorio Descrizione
code string Codice entità (es. simbolo ticker, codice industria)
lang_code string No Filtro per codice lingua (ISO 639-1)
country_code string No Filtro per codice paese (ISO 3166-1 alpha-2)
count string No Numero di risultati da restituire
cursor string No Cursore di paginazione (alternativa a search_after)

Esempi di codice

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"}}}'