bussin-mcp

MCPattestato
v0.1.4UnknownBUSL-1.1Aggiornato 2 g fanpmGitHub

Model Context Protocol server for Azure Service Bus — peek, search, and inspect queues, topics, and dead-letter queues from any MCP-aware AI client.

Funziona in
ClaudeCursorCopilotGemini

Dedotto dai trasporti dichiarati da questo annuncio (stdio). Un client che non compare qui non è escluso — semplicemente Forge non è in grado di confermarlo.

Build attestato
Un’attestation di provenienza verificata lega questo artefatto al repository indicato. Nessuno ha ancora rivendicato l’annuncio — questo dimostra dove è stato costruito il codice, non chi lo sostiene.
566Download/sett.
5Stelle su GitHub
2 g faUltimo aggiornamento
Richiede 1 credenziale prima di poter funzionare
  • YOUR_API_KEYChiave APIobbligatoria

    Your API key for the service

Dichiarato dall’autore nel registro MCP ufficiale. Forge does not store, broker, or ever see these values — the config below is scaffolded with placeholders you fill in locally.

Pacchetto
AutoreUnknown
LicenzaBUSL-1.1
Versione0.1.4
Fontenpm+mcp-registry
Stato di fiducia
A
85/100Affidabile
Presente nell’indice di Forge+10/10
Identità verificata · build attestato+20/20
Firma di pubblicazione Ed25519+0/5
Inclusa automaticamente quando il publisher esegue `forge publish`
Verifica del dominio+0/5
Publisher: ospita /.well-known/forge.json sulla homepage del pacchetto con { "publisher": "<github-login>" }
npm Trusted Publishing (Sigstore)+5/5
Corrispondenza del maintainer npm+0/5
Publisher: aggiungi il login GitHub verificato ai maintainer del pacchetto npm (npm owner add <login>)
Analisi CVE · pulita+30/30
Analisi statica · pulita+20/20
Incollalo in Claude Code, Cursor o qualsiasi assistente di IA per colmare tutte le lacune
StatoIdentità verificata
PublisherNon verificato
FirmaNon firmato
Dominio
Provenienza✓ Verificato con Sigstore · 53e1d94
Dipendenze✓ 60 risolte+ · nessuna vulnerabile
Superficie di strumenti11 strumenti · 1 privilegiati
Analisi di sicurezza✓ Pulitov0.1.4 · 1 g faQuanto è efficace questa analisi?
ValutazioniNessuna
Indicizzato12 set 2026

La verifica conferma l’identità del publisher (la proprietà del repo), non la sicurezza del codice. L’analisi di sicurezza copre i CVE noti e gli script di installazione sospetti.

Strumenti

11 strumenti · 1 privilegiati
Estratto staticamente dal pacchetto pubblicatov0.1.4 · 1d ago

Letto dal codice che npm distribuisce davvero, al momento dell’analisi. Il pacchetto non è mai stato eseguito. Gli strumenti registrati dinamicamente a runtime, o nascosti in codice impacchettato o minificato, possono sfuggire — quindi questo è un limite inferiore della superficie di strumenti, non un censimento completo.

list_namespacesList the Azure Service Bus namespaces the signed-in identity can see, across all enabled subscriptions. Large tenants can hold dozens, so pass nameFilter whenever you already know roughly what you are looking for. Requires Entra ID sign-in (not available with a connection string).

List the Azure Service Bus namespaces the signed-in identity can see, across all enabled subscriptions. Large tenants can hold dozens, so pass nameFilter whenever you already know roughly what you are looking for. Requires Entra ID sign-in (not available with a connection string).

Per questo strumento non è stato pubblicato alcuno schema di input.

list_queuesList queues in a namespace with active, dead-letter and scheduled message counts. Use this before peeking so you know which queues have a backlog.

List queues in a namespace with active, dead-letter and scheduled message counts. Use this before peeking so you know which queues have a backlog.

Per questo strumento non è stato pubblicato alcuno schema di input.

list_topicsList topics in a namespace with their message counts. Messages sit on a topic's subscriptions rather than the topic itself, so follow up with list_subscriptions to find where a backlog actually is.

List topics in a namespace with their message counts. Messages sit on a topic's subscriptions rather than the topic itself, so follow up with list_subscriptions to find where a backlog actually is.

Per questo strumento non è stato pubblicato alcuno schema di input.

list_subscriptionsList the subscriptions under a topic, with active and dead-letter counts. Use this to pick the subscription to pass to peek_messages or search_messages.

List the subscriptions under a topic, with active and dead-letter counts. Use this to pick the subscription to pass to peek_messages or search_messages.

Per questo strumento non è stato pubblicato alcuno schema di input.

peek_messagesPeek messages from a queue, or from a topic subscription when topic and subscription are given. Peek is non-destructive: it does not lock, consume, or increment delivery count. Set fromDeadLetter to read the dead-letter queue instead of the main entity. This reads from the head of the entity outwar…

Peek messages from a queue, or from a topic subscription when topic and subscription are given. Peek is non-destructive: it does not lock, consume, or increment delivery count. Set fromDeadLetter to read the dead-letter queue instead of the main entity. This reads from the head of the entity outwar…

Per questo strumento non è stato pubblicato alcuno schema di input.

search_messagesScan a queue or subscription for messages matching a body substring, message id, or subject. Non-destructive. Scanning is bounded by maxMessages and by a server-side timeout, so on a deep backlog prefer a narrow filter. Returns matching messages with their sequence numbers. Prefer this over repeate…

Scan a queue or subscription for messages matching a body substring, message id, or subject. Non-destructive. Scanning is bounded by maxMessages and by a server-side timeout, so on a deep backlog prefer a narrow filter. Returns matching messages with their sequence numbers. Prefer this over repeate…

Per questo strumento non è stato pubblicato alcuno schema di input.

send_messageSend a message to a queue or topic. This is a real send against the live namespace: consumers will pick it up. Sending to a topic delivers a copy to every subscription whose filter matches, so one send can fan out to many consumers. Needs the Azure Service Bus Data Sender role (or Data Owner), and…

Send a message to a queue or topic. This is a real send against the live namespace: consumers will pick it up. Sending to a topic delivers a copy to every subscription whose filter matches, so one send can fan out to many consumers. Needs the Azure Service Bus Data Sender role (or Data Owner), and…

Per questo strumento non è stato pubblicato alcuno schema di input.

resubmit_dead_letterNessuna descrizione pubblicata

Questo strumento non ha pubblicato alcuna descrizione. Forge non se la inventa.

delete_messagesprivilegiatoPermanently delete messages by sequence number from a queue or its dead-letter queue. This cannot be undone. Peek or search first to confirm the sequence numbers. Requires --allow-destructive.

Permanently delete messages by sequence number from a queue or its dead-letter queue. This cannot be undone. Peek or search first to confirm the sequence numbers. Requires --allow-destructive.

Per questo strumento non è stato pubblicato alcuno schema di input.

dead_letter_messagesMove active messages to the dead-letter queue by sequence number, with a reason. The messages stop being delivered to consumers and will not be retried, but they are not destroyed: they can be read with peek_messages using fromDeadLetter, and put back with resubmit_dead_letter. Use this to quaranti…

Move active messages to the dead-letter queue by sequence number, with a reason. The messages stop being delivered to consumers and will not be retried, but they are not destroyed: they can be read with peek_messages using fromDeadLetter, and put back with resubmit_dead_letter. Use this to quaranti…

Per questo strumento non è stato pubblicato alcuno schema di input.

purge_entityDelete EVERY message from a queue, a subscription, or their dead-letter queue. This is irreversible and unbounded. The confirm argument must be the exact entity name, as a deliberate second step. Requires --allow-destructive.

Delete EVERY message from a queue, a subscription, or their dead-letter queue. This is irreversible and unbounded. The confirm argument must be the exact entity name, as a deliberate second step. Requires --allow-destructive.

Per questo strumento non è stato pubblicato alcuno schema di input.

10 strumenti su 11 hanno pubblicato una descrizione.

I nomi e le descrizioni degli strumenti sono scritti dal publisher e mostrati alla lettera come testo inerte. Sono le stringhe che un client MCP passa a un modello, quindi Forge vi cerca schemi di prompt injection — ogni rilievo compare insieme all’analisi di sicurezza qui sopra. «Privilegiato» è una corrispondenza di parola chiave sul nome dello strumento, non una verifica di ciò che fa: un nome innocuo può comunque fare qualsiasi cosa.

Descrizione

Model Context Protocol server for Azure Service Bus — peek, search, and inspect queues, topics, and dead-letter queues from any MCP-aware AI client.

Parole chiave
mcpmodel-context-protocolazureazure-service-busservice-busservice-bus-explorerdead-letter-queueamqpclaudebussin
Alternative
Confronto delle superfici di strumenti…

Albero delle dipendenze

Ciò che una scansione di Forge ha risolto dai metadati npm il 2026-09-13: risoluzione osservata, non una dichiarazione dell'editore.

60 pacchetti risolti · 4 diretti · nessuno con avvisi di sicurezza La risoluzione si ferma alla profondità 4 e a 60 pacchetti.

La scansione si è fermata al limite di 60 pacchetti. Il resto dell'albero non è mai stato risolto.

Altri 36 pacchetti risolti non vengono disegnati qui (limite di visualizzazione: 24). Ogni dipendenza con un avviso di sicurezza viene disegnata comunque. Inventario completo (SBOM CycloneDX)

Dichiarate ma non risolte

66 dipendenze dichiarate non sono mai arrivate nell'albero. Mancano dalla risoluzione di Forge, non dal pacchetto.

+54 altre non elencate. I conteggi per motivo qui sopra le comprendono tutte.

Non seguite: peerDependencies. Questo albero copre solo le dipendenze di runtime, quindi ciò che queste comportano non è mai stato risolto.

Argomenti

Correlati in cloud platforms