We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bekirdag/docdex'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
hook_validate_request.rs•243 B
#![no_main]
use docdexd::api::v1::hooks::HookValidateRequest;
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: &[u8]| {
if let Ok(req) = serde_json::from_slice::<HookValidateRequest>(data) {
let _ = req.files.len();
}
});