MCP Registry (redmadrobot-rnd/mcp-registry) is an MCP server listed on the M8ven Trust Index. It scores 54 out of 100, grade D. It declares 39 tools. No publisher has claimed this listing.

D
Caution
54/100

MCP Registry

A central registry MCP server that routes requests to specialized AI services including embeddings, PDF extraction, reranking, vector search (Qdrant), PostgreSQL, LLM completions, markup, and transcription. Includes a proxy server with RAG pipeline for document processing and retrieval.

Caution. Specific findings reduced this grade. They are listed on the page. Grades reflect the full trust pyramid: code, verification depth, and reputation. New projects cap at C until adoption is earned.

How we verified

Code Verified⚡ Live Monitored: not connected

Verified is a snapshot. Live keeps it current, and builds your track record.

⚡ Connect GitHub → continuous verification on every pushwhy connect →

Who stands behind it

redmadrobot-rnd

Source: Glama

Is this your MCP?

Claim it to get a verified publisher badge, a free copy of our full audit findings, and direct contact for any high-priority issues we find. Or connect your repo for our deepest verification, Live Monitored: read-only, revoke anytime. What we access →

Install from

The grade above is for the source repository. Registries can serve a different version, so we mark the ones we were not able to read.

// key findings
No credential exfiltration, no sensitive file access, no obfuscation
Static analysis found nothing flowing your secrets to unexpected places.
Open source with a license and README
Anyone can audit the code, the license is declared, and the publisher documents what it does.
🔐
You'll be asked for 7 credentials: MAIN_SERVER_API_KEY, EMBEDDING_API_KEY, LLM_SERVICE_API_KEY, MARKUP_API_KEY, POSTGRES_PASSWORD, QDRANT_API_KEY, TRANSCRIBE_API_KEY
These are read from process.env at runtime. Make sure you trust where they’ll be sent.
// tools this server exposes29 tools

These names and descriptions are the publisher's own, read from the source code. We print them as written. Our assessment is the findings above, not this list.

get_server_and_tools

Get tools from all servers :return: List of servers and tools

router

Router for all servers :param server_name: Name of the server :param tool_name: Name of the tool :param params: Parameters for the tool :return: Result of the tool

health_check_servers

health check for all server :return: List of servers status

embedding_generate

Method for gets embeddings text :param text: text :return: List of lists embeddings

embedding_batch_generate

Method for gets embeddings text :param texts: List of texts :return: List of lists embeddings

embedding_get_models

Method for get all embeddings models :return: existing embedding models

health_check

health check for server :return: server status

llm_chat_completion

Generate answer for text :param text: text :return: answer

llm_get_models

Get existing models for generate answer :return: existing models for generate answer

llm_stream_completion

Streaming generate text :param text: text for LLM :return:

markup_get_methods

Get markup methods :return: markup methods

markup_process_text

Process text with method :param text: text for process :param method_name: method name for process :return:

markup_process_file

Get chunks from file (only .txt files!!!) :param file_base64: full base64 string for file :return: chunks

document_convert_to_markdown

conversion a document to Markdown :param file_base64: full base64 string for file :return: extracted text from

document_get_supported_formats

Get supported formats :return: supported formats

postgres_execute_query

Execute SQL query :param sql_query: SQL query :return: result of execute

postgres_get_schema

Get schema DB :return: Schema DB

postgres_create_table

Create table on DB :param sql_create_table_query: SQL query for create table :return:

postgres_insert_data

Insert data to DB :param sql_insert_data_query: SQL query for insert table :return:

vector_create_collection

Create a new vectors collection :param name: collection name :param vector_size: vector size in collection :return: result of creation

vector_get_collection_info

Get collection info :param name: collection name :return: information about collection

vector_upsert_points

Add/update vectors in Qdrant collection

vector_search

Search for similar vectors :param name_collection: name collection :param query_vector: query vector :param limit: limit closest points :return:

vector_delete_points

Delete vectors from collection :param name_collection: name collection :param ids: list of ids points :return: response status

rerank_documents

Rerank texts :param query: user query :param documents: documents for rerank :return: reranked list of documents

transcribe_audio

Transcribe audio :param file_base64: fill base64 string for audio :param audio_format: audio format (optional) :param diarize: Dialogue diarization (optional) :param diarize_speakers_num: number of speakers (optional) :param language: audio language (optional) :return: message about starting transcr

transcribe_get_status

Get transcribe status :param task_id: Task id :return: transcribe status

transcribe_get_result

Get transcribe result :param task_id: Task id :return: transcribe result

preprocessing_data_for_rag

This method is used to pre-prepare pdf files for RAG :param file_paths: List with file paths :return: The name of the vector collection that contains the processed search data for RAG.

// environment variables
To run this server yourself, you supply these values. They go in your own MCP client configuration and stay on your machine. The secret label means the value is sensitive, not that the server mishandles it.
🔐 secretMAIN_SERVER_API_KEYValid API key (must match Authorization header in proxy_mcp_server.py).
configEMBEDDING_URL
🔐 secretEMBEDDING_API_KEY
configEMBEDDING_MODEL_NAME
configEMBEDDING_URL_MODELS
configEMBEDDING_HEALTH_URL
configLLM_SERVICE_CHAT_COMPLETIONS_URL
🔐 secretLLM_SERVICE_API_KEY
configLLM_SERVICE_MODEL
configLLM_SERVICE_MODELS_URL
configLLM_SERVICE_COMPLETIONS_URL
configLLM_SERVICE_HEALTH_URL
configMARKUP_GET_METHODS_URL
🔐 secretMARKUP_API_KEY
configMARKUP_PROCESS_TEXT_URL
configMARKUP_PROCESS_FILE_URL
configMARKUP_HEALTH_CHECK_URL
configPDF_EXTRACTOR_URL
configPDF_HEALTH_URL
configPOSTGRES_USER
🔐 secretPOSTGRES_PASSWORD
configPOSTGRES_HOST
configPOSTGRES_DB
configQDRANT_URL
🔐 secretQDRANT_API_KEY
configQDRANT_HEALTH_CHECK_URL
configRERANK_URL
configRERANK_MODEL
configRERANK_HEALTH_URL
configTRANSCRIBE_UPLOAD_AUDIO
🔐 secretTRANSCRIBE_API_KEY
configTRANSCRIBE_GET_STATUS
configTRANSCRIBE_GET_TRANSCRIBE
configTRANSCRIBE_HEALTH_URL
configEMBEDDING_MODEL
// quality suggestions

Tool annotations

No tools have read-only/destructive annotations

Add readOnlyHint or destructiveHint annotations to every tool so hosts can warn users before invoking.

All four hints declared on every tool

39/39 tools missing one or more hints — get_server_and_tools (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); router (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint); health_check_servers (missing: readOnlyHint, destructiveHint, idempotentHint, openWorldHint), +36 more. OpenAI's directory rejects tools where any of the four hints are missing or non-boolean.

For every tool, set all four hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) to explicit true/false values that match the handler’s actual behaviour.

Destructive tools are labelled

1 tool perform destructive updates without destructiveHint — transcribe_audio deletes at line 62 (os.remove(fp.name))

Add destructiveHint:true to any tool whose handler calls .delete(), .upsert(), .update(), unlink, rm, DELETE, DROP, REPLACE INTO, or any operation that overwrites existing data.

Tool inputs are validated

21/39 tool handlers declare input schemas (54%)

Declare an inputSchema with zod/joi/yup on every tool definition.

Tool handlers catch errors

Only 8/39 tool handlers wrap calls in try/catch (21%)

Wrap each tool handler body in try/catch and return a structured error response.

Tests exist

No test files found

Add tests that exercise each declared tool.

Claim the listing to review these findings one by one and send us a correction where you disagree, straight to the team. Claiming also means we tell you when the grade moves, and reach you first if we find anything urgent.

// full audit trail
The findings above are the summary. The full trail, every check we ran, each deduction, the network hosts observed and the dependency advisories, goes to verified publishers, along with an alert whenever a new one lands. Verified publishers can also review each finding and dispute it in one click. Publisher corrections have sharpened several of our checks this month, because the maintainer knows the codebase better than any scanner.
// improvement guidance — verified publishers only
We have 6 concrete improvements we can share with the publisher of this MCP. Each comes with specific guidance to raise the trust score.
// embed badge in your README
[![M8ven Verified](https://m8ven.ai/badge/mcp/redmadrobot-rnd/mcp-registry?variant=verified)](https://m8ven.ai/mcp/redmadrobot-rnd/mcp-registry)
Shows verification status without the grade. Want the grade badge instead? Remove ?variant=verified from the URL.
commit: 677ff887bf64e36543ce48b761bb369f8b8fc085
code hash: 1efbe76f61ef4bbbd6e5b44f0dae985b5d7297632cf242d837b6147f35f60c74
view raw JSON →
Check MCPs from inside your assistant
Tool Check · MCP

Vetting this one by hand? Tool Check is an MCP that scores other MCPs. Add it once and ask Claude, ChatGPT, or any MCP client to grade a server, surface CVEs, check the publisher, and suggest safer alternatives — before you install.

https://m8ven.ai/api/mcp/tool-check
check_toolsearch_toolscompare_toolsrecommend_alternativescheck_publisherreport_concern
How to add it →Free · no account needed · works in any MCP client