Unregister Mcp Tool
curl --request DELETE \
--url https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}import requests
url = "https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}"
req, _ := http.NewRequest("DELETE", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"version_number": 123,
"config": {
"thresholds": {
"block": 0.55,
"redact": 0.35,
"output_block": 0.55,
"output_redact": 0.35
},
"detectors": {
"injection": true,
"pii": true,
"ner": true,
"embedding_anomaly": false,
"perplexity": false,
"harm": true,
"topic_drift": false,
"agentic_guardrails": true
},
"ner": {
"mode": "flag",
"threshold": 0.55,
"entities": [
"<string>"
]
},
"custom_phrases": [
"<string>"
],
"pii_rules": [
{
"name": "<string>",
"pattern": "<string>",
"category": "custom",
"score": 0.7,
"description": "<string>",
"flags": 0,
"priority": 0
}
],
"tool_policy": {
"allowlist": [
"<string>"
],
"denylist": [
"<string>"
]
},
"routing": {
"forbidden_providers": [
"<string>"
],
"provider": "<string>",
"upstream_base_url": "<string>"
},
"streaming": {
"strict": false,
"attachment_notice_enabled": true,
"attachment_notice_message": "🔒 Blindsight: analyzing attached file for security risks…"
},
"egress": {
"host_allowlist": [
"<string>"
]
},
"canaries": {
"enabled": false,
"phrases": [
"<string>"
]
},
"redaction": {
"style": "bracket"
},
"request_signing": {
"enabled": false,
"timestamp_skew_seconds": 300
},
"mcp": {
"min_trust_score": 0.4,
"tools": [
{
"name": "<string>",
"description": "",
"trust_score": 0,
"severity_top": "none",
"findings_count": 0,
"registered_at": "<string>",
"last_scanned_at": "<string>"
}
],
"enforcement": "block_high",
"pin_on_first_use": true,
"scan_results": true
}
},
"created_at": "2023-11-07T05:31:56Z",
"change_summary": "<string>",
"created_by_user_id": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}runtime-security-apps
Unregister Mcp Tool
DELETE
/
api
/
runtime-security
/
apps
/
{app_uuid}
/
mcp
/
tools
/
{tool_name}
Unregister Mcp Tool
curl --request DELETE \
--url https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}import requests
url = "https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}"
response = requests.delete(url)
print(response.text)const options = {method: 'DELETE'};
fetch('https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}"
req, _ := http.NewRequest("DELETE", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.your-blindsight.com/api/runtime-security/apps/{app_uuid}/mcp/tools/{tool_name}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"version_number": 123,
"config": {
"thresholds": {
"block": 0.55,
"redact": 0.35,
"output_block": 0.55,
"output_redact": 0.35
},
"detectors": {
"injection": true,
"pii": true,
"ner": true,
"embedding_anomaly": false,
"perplexity": false,
"harm": true,
"topic_drift": false,
"agentic_guardrails": true
},
"ner": {
"mode": "flag",
"threshold": 0.55,
"entities": [
"<string>"
]
},
"custom_phrases": [
"<string>"
],
"pii_rules": [
{
"name": "<string>",
"pattern": "<string>",
"category": "custom",
"score": 0.7,
"description": "<string>",
"flags": 0,
"priority": 0
}
],
"tool_policy": {
"allowlist": [
"<string>"
],
"denylist": [
"<string>"
]
},
"routing": {
"forbidden_providers": [
"<string>"
],
"provider": "<string>",
"upstream_base_url": "<string>"
},
"streaming": {
"strict": false,
"attachment_notice_enabled": true,
"attachment_notice_message": "🔒 Blindsight: analyzing attached file for security risks…"
},
"egress": {
"host_allowlist": [
"<string>"
]
},
"canaries": {
"enabled": false,
"phrases": [
"<string>"
]
},
"redaction": {
"style": "bracket"
},
"request_signing": {
"enabled": false,
"timestamp_skew_seconds": 300
},
"mcp": {
"min_trust_score": 0.4,
"tools": [
{
"name": "<string>",
"description": "",
"trust_score": 0,
"severity_top": "none",
"findings_count": 0,
"registered_at": "<string>",
"last_scanned_at": "<string>"
}
],
"enforcement": "block_high",
"pin_on_first_use": true,
"scan_results": true
}
},
"created_at": "2023-11-07T05:31:56Z",
"change_summary": "<string>",
"created_by_user_id": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}
