GAIIA Expert Proxy (MCP Server)
GAIIA Unified MCP Server (v2.0.0)
GAIIA Unified MCP Server — это сервер Model Context Protocol (MCP) корпоративного класса, который подключает ИИ-ассистентов для написания кода и автономных агентов к экосистеме GAIIA. Он обеспечивает экспертно-управляемые аудиты кода, преобразования проектов, запуск BPMN-процессов и исследование API через несколько протоколов.
🌟 Возможности и функции
Выбор эксперта и маршрутизация манифеста: Просматривайте и выбирайте из реестра Proxy Experts (например, Clean Architecture, Security, Performance, Transit domain).
Трансформация и аудит кода: Преобразуйте отдельные блоки кода или проводите аудит всего репозитория на соответствие неизменным архитектурным стандартам.
Мультипротокольное исследование API: Выполняйте фаззинг и обнаружение схем для различных протоколов:
REST (JSON): синтез OpenAPI v3.
GraphQL: интроспекция схем и автоматическая генерация инструментов.
gRPC (Protobuf): проверка серверной рефлексии (
src/mock/mock-grpc-server.ts).ISO 8583 (TCP Socket): взаимодействие с raw-сокетами для платёжных шлюзов (
src/mock/mock-tcp-server.ts).XML / SOAP: автоматический разбор
.xsdи.wsdlфайлов.EDI (ANSI X12): восстановление сегментов для устаревших корпоративных форматов цепочек поставок.
OData и ERP: разрешение корпоративных метаданных (
src/mock/mock-erp-server.ts).
Оркестрация BPMS: Перечисляйте BPMN-шаблоны и запускайте выполнение рабочих процессов в gaiia-process-management.
Телеметрия и хранение контекста: отслеживание контекста в памяти и запись телеметрии через
src/services/telemetry-service.ts.
Related MCP server: docsgrep
⚙️ Установка и сборка
Предварительные требования
Node.js: v20+ LTS
npm: v9+
Зарегистрированная учётная запись GAIIA для синхронизации облачного реестра
Настройка
# 1. Navigate to directory
cd gaiia-mcp-server
# 2. Install dependencies
npm install
# 3. Build TypeScript
npm run build🔐 Аутентификация
Выполните аутентификацию с платформой GAIIA, чтобы сохранять токены сеанса локально:
npm run loginТокены безопасно кэшируются в ~/.gaiia/auth.json.
🔧 Конфигурация окружения (.env)
GAIIA_GRAPHQL_ENDPOINT=https://<api-id>.appsync-api.ap-southeast-2.amazonaws.com/graphql
AWS_REGION=ap-southeast-2
USER_POOL_ID=ap-southeast-2_xxxxxxxxx
APP_CLIENT_ID=xxxxxxxxxxxxxxxxxxxxxxxxxx🔌 Конфигурация MCP-клиента (например, Claude Desktop)
Добавьте сервер в ваш claude_desktop_config.json:
{
"mcpServers": {
"gaiia-unified-mcp": {
"command": "node",
"args": ["c:/programming/aiia/gaiia-mcp-server/build/index.js"]
}
}
}🛠️ Справочник доступных MCP-инструментов
Инструмент | Назначение | Ключевые аргументы |
| Перечисляет всех доступных ИИ-экспертов в реестре |
|
| Устанавливает активного эксперта для преобразований |
|
| Проводит аудит, рефакторинг или генерацию кода с активным экспертом |
|
| Выполняет глубокий архитектурный аудит или автоматический рефакторинг каталога |
|
| Вносит образцы кода из каталога в память активного эксперта |
|
| Мультипротокольный фаззинг API и синтез схем |
|
| Синхронизирует локально обнаруженные схемы в | нет |
| Перечисляет зарегистрированные BPMN-шаблоны в рабочей области | нет |
| Запускает BPMN-процесс с начальным контекстом |
|
🧪 Локальное тестирование и мультипротокольные mock-серверы
Сервер включает автономные mock-серверы в src/mock/ для тестирования сложных протоколов без внешних зависимостей:
# Start mock gRPC server
npx tsx src/mock/mock-grpc-server.ts
# Start mock ISO 8583 TCP socket server
npx tsx src/mock/mock-tcp-server.ts
# Start mock ERP / OData server
npx tsx src/mock/mock-erp-server.ts📄 Лицензия
MIT © 2026 GAIIA Engineering
Available Tools
8 toolsgaiia_analyze_projectC
Perform a deep architectural audit of an entire local project directory.
| Name | Required | Description | Default |
|---|---|---|---|
| directory_path | Yes | The absolute path to the project directory | |
| mode | No | Default is 'audit'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Without annotations, the description must disclose all behavioral traits. It only mentions 'deep architectural audit' without specifying if it modifies files, requires permissions, or produces output. The mode parameter hints at different behaviors but is not elaborated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise at two sentences, front-loaded with the action. It avoids unnecessary details, though it could be slightly more descriptive without being verbose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Despite having two parameters and no output schema, the description is too sparse. It does not explain what the audit entails, how the mode differs, or what the output looks like, which is inadequate for a potentially complex tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters. The description adds no extra meaning beyond 'deep architectural audit' and does not enrich the understanding of directory_path or mode usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool performs a deep architectural audit of a local project directory, which is a specific verb and resource. However, it does not explicitly differentiate from sibling tools like gaiia_transform, which could also involve project analysis, leading to a slight deduction.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
There is no guidance on when to use this tool versus alternatives (e.g., gaiia_transform, sync_specs). The description lacks context for preference or exclusion conditions, leaving the agent without decision support.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gaiia_list_expertsC
List available AI experts and their specialties.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Optional search query |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries full transparency burden. It conveys a read operation but omits any details about side effects, authentication requirements, rate limits, or output format. Minimal behavioral context beyond the basic action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence with no extraneous words. It is appropriately front-loaded, though slightly under-specified for the parameter usage.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one optional param, no output schema), the description provides enough to understand the core function. It mentions output includes specialties, but does not describe the response structure or provide an example, leaving minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage for the single optional query parameter. However, the tool description does not elaborate on how the query filters results (e.g., by name or specialty), offering no added value over the schema. A brief hint would improve usability.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists AI experts and their specialties, distinguishing it from sibling tools like gaiia_list_processes and gaiia_analyze_project. A slight lack of specificity about what constitutes an 'expert' prevents a higher score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, nor does it mention any prerequisites or exclusions. The agent receives no context for decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gaiia_list_processesA
List all registered BPMN process blueprints/templates in the GAIIA registry for the authenticated tenant.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description bears the full burden. It states the resource type and scope but does not disclose behaviors like pagination, ordering, or whether only active blueprints are returned. It provides basic but adequate transparency for a simple list operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, well-structured sentence of 15 words, front-loaded with the action and resource. No unnecessary information; every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity (no parameters, no output schema), the description is mostly complete. It could mention return format or pagination, but the lack of such details is not critical for a list operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, and schema coverage is 100%. Per guidelines, the baseline for 0 parameters is 4. The description adds no parameter information, which is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List'), the resource ('BPMN process blueprints/templates'), and the scope ('for the authenticated tenant'). It effectively distinguishes from sibling tools like gaiia_start_process and gaiia_analyze_project.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives (e.g., gaiia_start_process). There is no when-not or exclusion criteria, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gaiia_set_active_expertC
Select an expert to use for code transformations.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | The email of the expert |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It does not disclose side effects (e.g., overwriting previous selection), validation of email, or whether the expert must exist. The behavior is under-specified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One short, front-loaded sentence that clearly states the tool's action. It is concise and contains no fluff, though it could benefit from additional context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given low complexity (1 param, no output schema), description is somewhat complete but fails to mention return value or prerequisites (e.g., expert must exist). Lacks detail for fully uninformed use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with one string parameter 'email' described as 'The email of the expert'. Description does not add extra meaning beyond the schema, so baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses specific verb 'select' and resource 'expert', and distinguishes from sibling tools like gaiia_list_experts and gaiia_transform by implying selection of an active expert for transformations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool versus alternatives (e.g., before gaiia_transform or after listing experts). No explicit when-not or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gaiia_start_processB
Starts/triggers an instance of a registered BPMN process blueprint with an optional custom payload.
| Name | Required | Description | Default |
|---|---|---|---|
| process_type | Yes | The unique processType/slug of the BPMN blueprint (e.g. driver-roster-change) | |
| payload | No | Optional custom JSON payload context for the process run |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations; description does not disclose side effects, such as whether the call is asynchronous, idempotent, or what state changes occur. For a trigger action, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no fluff, but lacks enough detail to be efficiently informative. Could be improved with more context.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 2 params, no output schema, no annotations, the description is incomplete. Missing error behavior, success indication, or execution mode (sync/async).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%; the description repeats the payload's optional nature but adds no new meaning. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'starts/triggers' and the resource 'registered BPMN process blueprint', and mentions the optional payload. It effectively distinguishes from siblings like gaiia_list_processes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use this tool vs alternatives. Missing prerequisites (e.g., process blueprint must exist) and when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
gaiia_transformC
Audit, refactor, or generate code using the active GAIIA expert.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | The code block to process | |
| instructions | Yes | Instructions for the expert |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full responsibility for behavioral disclosure. It mentions auditing, refactoring, or generating code but does not explain side effects (e.g., file modifications), prerequisites (e.g., active expert must be set), or safety considerations. This is insufficient for a transformation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence of 10 words, which is concise but lacks front-loaded specifics. While it conveys the core purpose, it does not earn its place fully due to vagueness and missing details that would aid agent selection.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no output schema and two simple parameters, the description should provide more context about return values, behavioral outcomes, or typical use cases. It fails to do so, leaving gaps in understanding for an AI agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% coverage with descriptions for 'code' and 'instructions'. The tool description does not add any additional meaning or context for these parameters, so the baseline score of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's actions ('Audit, refactor, or generate code') and resource ('using the active GAIIA expert'). It distinguishes from siblings by specifying the active expert, though could be more explicit about differences from tools like gaiia_analyze_project.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives like gaiia_analyze_project or gaiia_start_process. It lacks any 'when-to-use' or 'when-not-to-use' information, leaving the agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
interrogate_endpointB
Intelligently interrogates a REST endpoint to discover its schema via reinforcement learning loop.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | The full URL of the endpoint. | |
| method | Yes | ||
| auth_header | No | Optional Authorization header. | |
| base_payload | No | Optional base JSON payload. | |
| extra_headers | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It mentions a 'reinforcement learning loop' but does not explain its implications (e.g., time consumption, network activity, state changes). The agent cannot assess safety or side effects.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence, which is concise and front-loaded. However, the phrase 'intelligently' and 'reinforcement learning loop' could be seen as slightly verbose. Overall, it efficiently conveys the core action.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complex behavior (RL loop, output schema discovery) and lack of output schema, the description is incomplete. It does not explain the loop's mechanics, return format, or termination conditions, leaving the agent without crucial context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 5 parameters with 60% description coverage. The description does not elaborate on parameters beyond the schema. Though the schema provides some meaning (e.g., url, auth_header), the description adds no extra value for parameter comprehension.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: it intelligently interrogates a REST endpoint to discover its schema via reinforcement learning. The verb 'interrogate' and resource 'REST endpoint' are specific, and the mention of schema discovery differentiates from the listed sibling tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives, such as before integrating with an unknown API. It lacks explicit context, prerequisites, or exclusion criteria, leaving the agent to infer usage from the description alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sync_specsA
Synchronizes all locally discovered API specifications in the 'specs/' directory to the GAIIA Registry.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It implies a write operation ('synchronizes') but does not state if data is overwritten, if authentication is needed, or what happens on conflict. Minimal disclosure beyond the basic action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no fluff. Could benefit from additional context but is appropriately concise for a zero-parameter tool.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Describes action and scope, but lacks details on side effects (e.g., is it one-way upload?), prerequisites (must specs/ exist?), or output. Adequate but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
No parameters exist (input schema empty). Baseline for 0 parameters is 4, and description adds no parameter details, which is acceptable.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description gives a specific verb ('synchronizes'), source ('specs/ directory'), target ('GAIIA Registry'), and resource ('API specifications'). It clearly distinguishes from sibling tools like gaiia_analyze_project which focuses on analysis.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use this tool vs alternatives. The description is self-contained but lacks context about prerequisites or situations where sync is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
8 tool updates
v1.0.0- First observed
gaiia_analyze_project - First observed
gaiia_list_experts - First observed
gaiia_list_processes - First observed
gaiia_set_active_expert - First observed
gaiia_start_process - First observed
gaiia_transform - First observed
interrogate_endpoint - First observed
sync_specs
TDQS
Each tool has a clearly distinct purpose: project analysis, expert listing/selection, process listing/starting, code transformation, API interrogation, and spec syncing. No significant overlap.
Six of eight tools use the consistent 'gaiia_' prefix with verb_noun pattern, but two tools ('interrogate_endpoint', 'sync_specs') lack the prefix, creating a mixed naming convention.
With 8 tools, the set is well-scoped for a proxy server providing GAIIA platform operations, covering multiple areas without being overwhelming.
The tool surface covers core workflows (expert management, project analysis, process execution, code transformation, API spec handling), but lacks a get_active_expert tool and some CRUD operations, leaving minor gaps.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
An MCP server for deep research or task groups
A MCP server built for developers enabling Git based project management with project and personal…
Scan any MCP server for tool-poisoning, security, auth & license. Trust score before install.
Related MCP Servers
- AlicenseAqualityDmaintenanceMCP server for comprehensive code analysis, navigation, and quality assessment across 25+ programming languages.988MIT
- AlicenseBqualityBmaintenanceA high-performance MCP server for intelligent documentation search, proactive bug detection, and semantic analysis of codebases.2515MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that transforms Claude Code into an intelligent refactoring assistant, enabling code scanning, hotspot detection, optimization reports, and safe refactoring for large repositories.256MIT
- AlicenseAqualityCmaintenanceAn MCP server that extracts complete knowledge from any codebase — architecture, patterns, dependencies, API surface. Combines static analysis with AI-powered deep interpretation.8MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dapooleygmailcom/gaiia-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server