EKMS MCP Server
Server Quality Checklist
Latest release: v1.0.0
- Disambiguation5/5
Each tool has a clearly distinct purpose with no overlap: get_knowledge_graph retrieves relationship maps, get_knowledge_item fetches full content, list_customers and list_knowledge_types provide filtering metadata, recommend_knowledge offers personalized suggestions, record_knowledge_feedback captures usage data, and search_knowledge performs queries. The descriptions clearly differentiate their functions, preventing agent misselection.
Naming Consistency5/5All tool names follow a consistent verb_noun pattern in snake_case (e.g., get_knowledge_graph, list_customers, search_knowledge). There are no deviations in naming conventions, making the set predictable and readable for agents.
Tool Count5/5With 7 tools, the count is well-scoped for an enterprise knowledge management system (EKMS). Each tool serves a specific role in knowledge retrieval, recommendation, feedback, and metadata handling, with no redundant or missing tools for the domain.
Completeness4/5The tool surface covers core EKMS workflows: retrieval (get, search), metadata (list), recommendation, and feedback. Minor gaps exist, such as no explicit create, update, or delete tools for knowledge items, but agents can work around this by using existing tools for read-only operations and feedback for updates.
Average 3.4/5 across 7 of 7 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 0 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
Add a LICENSE file by following GitHub's guide. Once GitHub recognizes the license, the system will automatically detect it within a few hours.
If the license does not appear after some time, you can manually trigger a new scan using the MCP server admin interface.
MCP servers without a LICENSE cannot be installed.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. While it indicates this is a retrieval operation ('取得' - get), it doesn't describe important behavioral aspects like whether this requires authentication, rate limits, what format the graph is returned in, whether it's paginated, or potential performance implications of deeper depth values. The description is too minimal for a tool with 3 parameters and no output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise - a single sentence that directly states the tool's purpose. There's no wasted language or unnecessary elaboration. It's front-loaded with the core functionality. For a retrieval tool with good schema documentation, this level of conciseness is appropriate.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness2/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 3 parameters, no annotations, and no output schema, the description is insufficiently complete. It doesn't explain what the graph output looks like, how relationships are represented, what happens at different depth levels, or practical usage considerations. For a graph visualization tool with multiple configuration parameters, more context is needed to help an agent use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description doesn't add any parameter-specific information beyond what's in the schema. It mentions '特定知識項目' (specific knowledge item) which aligns with the knowledgeId parameter, but provides no additional context about parameter usage, relationships between parameters, or practical examples.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '取得特定知識項目的關聯圖譜,顯示與其他知識的關係' (Get the relationship graph of a specific knowledge item, showing relationships with other knowledge). It specifies the verb ('取得' - get/retrieve) and resource ('知識項目的關聯圖譜' - knowledge item relationship graph). However, it doesn't explicitly distinguish this from sibling tools like 'get_knowledge_item' or 'search_knowledge', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does 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. It doesn't mention sibling tools like 'get_knowledge_item' (which might retrieve a single item) or 'search_knowledge' (which might search across items), nor does it provide context about when this graph visualization is appropriate versus other retrieval methods.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions retrieving '完整內容' (complete content) and including metadata and related knowledge, which gives some context about what data is returned. However, it lacks details on permissions, rate limits, error handling, or whether this is a read-only operation (though '取得' implies retrieval, not mutation). For a tool with no annotations, this is a significant gap in behavioral transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese that clearly states the tool's purpose without unnecessary words. It is front-loaded with the core action ('取得' - retrieve) and resource ('知識項目' - knowledge item), making it easy to understand quickly. Every part of the sentence earns its place by specifying key details like ID-based retrieval and included content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (simple retrieval with 2 parameters), no annotations, no output schema, and 100% schema coverage, the description is minimally adequate. It explains what the tool does but lacks context on behavioral aspects (e.g., safety, performance) and doesn't detail output values. Without an output schema, the description should ideally hint at return structure, but it only mentions content types, leaving gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, with both parameters ('id' and 'includeRelations') fully described in the schema. The description adds no additional parameter semantics beyond what's in the schema (e.g., it doesn't explain UUID format or what '關聯知識' entails). According to the rules, with high schema coverage (>80%), the baseline is 3 even with no param info in the description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '根據 ID 取得特定知識項目的完整內容,包含所有元資料和關聯知識' (Retrieve the complete content of a specific knowledge item by ID, including all metadata and related knowledge). It specifies the verb ('取得' - retrieve) and resource ('知識項目' - knowledge item) with scope ('完整內容' - complete content). However, it doesn't explicitly distinguish this from sibling tools like 'get_knowledge_graph' or 'search_knowledge', which prevents a score of 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does 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. It doesn't mention sibling tools like 'get_knowledge_graph' (which might retrieve graph-structured knowledge) or 'search_knowledge' (which might search without a specific ID), nor does it specify prerequisites or exclusions. Usage is implied by the description but not explicitly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool records feedback for optimization, implying a write/mutation operation, but doesn't specify permissions needed, rate limits, idempotency, or what happens on success/failure. For a mutation tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese: '記錄知識使用反饋,用於持續優化知識品質'. It's front-loaded with the core purpose and has zero wasted words, making it highly concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (mutation with 6 parameters, no output schema, and no annotations), the description is minimally adequate. It states the purpose but lacks behavioral details, usage context, and output information. With 100% schema coverage, it's complete enough for basic understanding but insufficient for robust agent guidance without additional context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 6 parameters with descriptions and enums. The description adds no additional meaning beyond the schema, such as explaining how parameters interact (e.g., 'followUpQuestions' indicates incomplete knowledge) or usage examples. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '記錄知識使用反饋,用於持續優化知識品質' (Record knowledge usage feedback for continuous optimization of knowledge quality). It specifies the action (record feedback) and the resource (knowledge usage), but doesn't distinguish it from sibling tools like 'recommend_knowledge' or 'search_knowledge' in terms of when to use each.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines2/5Does 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. It doesn't mention prerequisites (e.g., after using knowledge in a session), exclusions, or how it differs from sibling tools like 'get_knowledge_item' for retrieval. Usage is implied only by the purpose statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. The description states it lists customer names and mentions filtering use, but it doesn't disclose important behavioral traits: whether this is a read-only operation, if it requires authentication, potential rate limits, pagination behavior, or what happens when no customers exist. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior and constraints.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately concise with two clear parts: the core functionality and the usage context. Both sentences earn their place by providing essential information without redundancy. It's front-loaded with the main purpose. Minor improvement could be made by integrating the two ideas more seamlessly, but overall it's efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 optional parameter, no output schema, no annotations), the description is minimally adequate. It explains what the tool does and provides some usage context. However, without annotations or output schema, it should ideally disclose more about behavioral aspects (like whether it's safe/read-only) and what the return format looks like. The description meets basic requirements but leaves room for more completeness given the lack of structured data.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the single parameter 'includeStats' fully documented in the schema. The description doesn't mention any parameters or add meaning beyond what the schema provides. According to the rules, when schema coverage is high (>80%), the baseline is 3 even with no parameter information in the description. The description doesn't compensate but doesn't need to given the comprehensive schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '列出知識庫中所有客戶名稱' (list all customer names in the knowledge base). It specifies the verb ('列出' - list) and resource ('客戶名稱' - customer names). However, it doesn't explicitly distinguish this from sibling tools like 'search_knowledge' or 'get_knowledge_item', which might also involve customers. The second part '用於過濾特定客戶的知識' (for filtering knowledge of specific customers) adds context but doesn't fully differentiate from alternatives.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context: it's for listing customer names to filter knowledge. However, it doesn't explicitly state when to use this tool versus alternatives like 'search_knowledge' or 'list_knowledge_types'. There's no guidance on prerequisites, exclusions, or specific scenarios where this tool is preferred. The implied context is helpful but lacks explicit comparison with sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior2/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool lists knowledge types and descriptions, but doesn't disclose any behavioral traits such as whether it's read-only (implied but not stated), whether it requires authentication, rate limits, pagination behavior, or error conditions. For a tool with zero annotation coverage, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence in Chinese: '列出所有可用的知識類型及其說明,用於了解知識庫結構'. It's front-loaded with the core action ('列出所有可用的知識類型及其說明') and adds purpose without redundancy. Every word earns its place, making it appropriately concise and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (0 parameters, no output schema, no annotations), the description is minimally adequate. It states what the tool does and its purpose, but lacks details on behavioral aspects like safety, performance, or output format. Without annotations or output schema, the description should ideally provide more context about what '列出' entails (e.g., format, limitations), but it's complete enough for a simple listing tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters, and schema description coverage is 100% (empty schema is fully described). The description doesn't need to add parameter semantics, and it appropriately doesn't mention any. With no parameters, the baseline is 4, as there's nothing to compensate for.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '列出所有可用的知識類型及其說明' (list all available knowledge types and their descriptions). It specifies the verb ('列出' - list) and resource ('知識類型' - knowledge types), and adds the goal '用於了解知識庫結構' (for understanding the knowledge base structure). However, it doesn't explicitly differentiate from sibling tools like 'get_knowledge_graph' or 'search_knowledge', which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines3/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage context: '用於了解知識庫結構' (for understanding the knowledge base structure) suggests this tool is for exploring metadata about knowledge types rather than querying content. However, it doesn't provide explicit guidance on when to use this vs. alternatives like 'get_knowledge_item' or 'search_knowledge', nor does it mention any exclusions or prerequisites.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It explains search mode behaviors (e.g., semantic understands intent but may miss exact matches) and mentions knowledge graph inclusion via includeRelated parameter. However, it doesn't disclose critical behavioral traits like pagination, rate limits, authentication needs, error handling, or what the output looks like (no output schema).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with bullet points for search modes and knowledge types, making it easy to scan. It's appropriately sized for a tool with 6 parameters, though the knowledge type list is somewhat lengthy. Every sentence earns its place by explaining functionality without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search tool with 6 parameters and no output schema, the description provides good context about search modes and knowledge types but has significant gaps. It doesn't explain the output format, result ordering, pagination, error cases, or how it differs from sibling tools like recommend_knowledge. With no annotations and no output schema, more behavioral context would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 6 parameters thoroughly. The description adds some value by explaining the trade-offs between search modes and listing knowledge types, but doesn't provide additional semantic context beyond what's in the schema descriptions (e.g., how customerName filtering works, what 'related knowledge' means). Baseline 3 is appropriate when schema does heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool searches an enterprise knowledge base, specifying the verb 'search' and resource 'knowledge base'. It distinguishes itself from siblings like get_knowledge_item (retrieves specific items) and recommend_knowledge (suggests content) by focusing on query-based searching across multiple knowledge types.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use different search modes (hybrid, semantic, keyword) based on trade-offs, but doesn't explicitly mention when to use this tool versus alternatives like recommend_knowledge or get_knowledge_graph. It lists knowledge types but doesn't guide on when to filter by them versus using list_knowledge_types first.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior3/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does describe key behavioral aspects: the tool personalizes recommendations based on personality traits and health scores, and explains how different trait levels affect recommendations (e.g., high openness = extended information, low = core answers). However, it doesn't mention what format the recommendations come in, whether there are rate limits, authentication requirements, or potential 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.
Conciseness4/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized and front-loaded with the core purpose in the first sentence. The bullet points efficiently explain the personality traits without unnecessary elaboration. There's minimal waste, though the health score explanation could be slightly more concise.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness3/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (5 parameters including nested objects) and absence of both annotations and output schema, the description does a reasonable job but has gaps. It explains the personalization logic well but doesn't describe the return format, error conditions, or what constitutes 'knowledge' in this context. For a recommendation tool with no output schema, more information about expected outputs would be helpful.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema description coverage is 100%, so the baseline is 3. The description adds meaningful context beyond the schema by explaining the semantic meaning of personality traits: how openness affects information depth preference, conscientiousness affects detail level preference, and neuroticism affects reassurance needs. This provides valuable guidance for parameter interpretation that isn't in the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: '根據對話上下文和客戶特徵推薦相關知識' (recommend relevant knowledge based on conversation context and customer characteristics). It specifies the verb '推薦' (recommend) and resource '知識' (knowledge), and distinguishes itself from siblings like get_knowledge_item (retrieve specific item) or search_knowledge (general search) by focusing on personalized recommendations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use this tool: when you need '個人化推薦' (personalized recommendations) based on Big Five personality traits and health scores. It doesn't explicitly state when NOT to use it or name specific alternatives among the sibling tools, but the context is sufficiently clear for an agent to understand this is for recommendation rather than retrieval or listing operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md:
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/jihsin/ekms-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server