mcp-server-wikipedia
This server provides a progressive retrieval strategy for Wikipedia, minimizing token usage by allowing LLMs to search, summarize, and selectively fetch sections. The tools include:
search_articles(query, limit=5): Search Wikipedia and return top matching pages with snippets.
get_summaries(titles): Fetch compact summaries for one or more page titles.
get_toc(title): Retrieve a structured table of contents with section indices, titles, and anchors.
get_section(title, section): Fetch a specific section by index or exact title.
get_page(title): Retrieve the full plain-text content of a page.
These tools can be chained (search → summaries → toc → section) to reduce token usage by up to 80% compared to fetching entire pages. It integrates as an MCP server with clients like Claude Desktop.
Provides tools for searching Wikipedia articles, getting summaries, inspecting table of contents, and retrieving specific sections or full pages using a progressive retrieval strategy to minimize token usage.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-wikipediaSearch for light reactions and summarize top result"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Wikipedia MCP Server 📚
Surgical, token-efficient Wikipedia knowledge retrieval MCP server for AI agents with deterministic summary, search, and full-article projection.
🌐 Live Documentation & Web Portal: https://wikipedia.builditwithai.xyz
⚡ Quickstart
# 1-Line Universal Installer (Auto-configures Claude Desktop, Cursor, Claude Code, Antigravity, VS Code, Zed, Windsurf)
curl -fsSL "https://wikipedia.builditwithai.xyz/install" | bash
# Or run directly via your preferred runtime:
uvx mcp-server-wikipedia
npx -y mcp-server-wikipediaRelated MCP server: Wikipedia MCP Server
🤖 Client Setup
A. Claude Code (CLI)
claude mcp add wikipedia -- uvx mcp-server-wikipediaB. Cursor & Google Antigravity (mcp.json)
{
"mcpServers": {
"wikipedia": {
"command": "uvx",
"args": ["mcp-server-wikipedia"]
}
}
}C. Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"wikipedia": {
"command": "uvx",
"args": ["mcp-server-wikipedia"]
}
}
}D. VS Code (Cline / Roo Code / Continue)
{
"mcpServers": {
"wikipedia": {
"command": "npx",
"args": ["-y", "mcp-server-wikipedia"]
}
}
}🛠️ Tools & Capabilities
Tool Name | Parameters | Description | Return Type |
|
| Fetches concise, factual lead summary of any Wikipedia page. |
|
|
| Fetches complete article body formatted in clean, structured Markdown. |
|
|
| Searches Wikipedia articles with autocomplete and relevance ranking. |
|
|
| Retrieves a specific section by header name, saving context window space. |
|
|
| Extracts outgoing cross-reference links from an article. |
|
|
| Lists taxonomic categories and classifications for a page. |
|
|
| Dynamically loads research playbooks from GitHub. |
|
| (none) | Lists all available Wikipedia research skills. |
|
🔒 Telemetry & Privacy
This package collects anonymous, non-PII diagnostic telemetry (command executions, latency, error codes) to improve tool reliability. No article search terms, personal data, source code, or environment variables are ever collected or stored.
You can opt out anytime by setting either of the following environment variables:
export DO_NOT_TRACK=1
# or
export MCP_TELEMETRY_OPT_OUT=1📄 License
MIT License. See LICENSE for details.
Available Tools
7 toolsget_pageBRead-onlyIdempotent
Fetch a full Wikipedia page as plain text.
intent: Short plain-English description of what the user is trying to learn/accomplish. E.g. "background on the Suez crisis for an essay", "verify a claimed date".
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| intent | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already cover read-only, open-world, and idempotent behavior. The description adds no behavioral context beyond that, such as potential size of responses, rate limits, or what 'full page' implies regarding content type. It does not contradict annotations, but adds minimal value.
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, using a single sentence for the main purpose. The additional paragraph explaining 'intent' is structured clearly and is useful, though it might be better placed in the schema. No redundant text or fluff.
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 and the presence of annotations and an output schema, the description is adequate but not complete. It does not mention any limitations, edge cases, or what 'plain text' includes (e.g., Wikitext vs rendered text). For a full-page fetch, more detail could help.
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 0%, but the description explains the 'intent' parameter with examples ('background on the Suez crisis for an essay'). However, the 'title' parameter is not described, though its meaning is likely obvious. The description partially compensates for the lack of schema descriptions.
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 'Fetch a full Wikipedia page as plain text', with a specific verb (fetch), a clear resource (full Wikipedia page), and an output format (plain text). It distinguishes from siblings like get_section and get_summaries by focusing on the full page.
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 get_section or get_summaries. It does not mention any prerequisites, use cases, or when not to use it. The intent parameter's explanation is about the parameter, not about tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_sectionBRead-onlyIdempotent
Fetch one section by section index or exact section title.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| section | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description aligns with these by framing the action as a 'Fetch' and does not contradict the annotations. It adds little beyond the annotations and does not describe errors or return behavior, though an output schema exists.
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 that front-loads the verb and resource and contains no unnecessary words. It communicates the essential purpose efficiently.
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?
The output schema and rich annotations cover return values and safety, so the description does not need to repeat those. However, for a tool with two required parameters and zero schema-level descriptions, the relationship between 'title' and 'section' remains unclear, leaving the description minimally complete but not fully self-sufficient.
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 0%, so the description must compensate for the lack of parameter explanations. It partially clarifies that 'section' can be an index or exact section title, but the role of the required 'title' parameter is left implicit. Additionally, saying 'or' while both parameters are required creates ambiguity.
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 uses a specific verb ('Fetch') and clearly identifies the resource ('one section') as well as the selection mechanism ('by section index or exact section title'). However, it does not explicitly distinguish this from sibling tools such as get_toc or get_page.
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 implies the tool is for retrieving a single section, but it provides no explicit when-to-use or when-not-to-use guidance and names no alternatives or exclusions. The usage context must be inferred from the wording.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_summariesARead-onlyIdempotent
Fetch compact summaries for one or more Wikipedia page titles.
| Name | Required | Description | Default |
|---|---|---|---|
| titles | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the tool returns compact summaries, supports multiple titles, and is scoped to Wikipedia page titles. Since annotations already mark it as readOnly, openWorld, and idempotent, this added context is sufficient for a low-risk read 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?
The description is one short sentence with no filler, redundant phrasing, or repetition of structured fields. Every word contributes to conveying the tool's purpose and key constraints.
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?
For a single-parameter, read-only tool with output-schema coverage, the description gives enough context to understand the request and likely response shape. It does not mention edge cases like nonexistent titles or ordering, but those are not essential given annotations and simple scope.
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?
Although the schema provides no property descriptions, the tool description clarifies that the titles array must contain 'Wikipedia page titles' and says they can be one or more. This adds meaningful context beyond the bare 'Titles' label in the schema.
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 uses a specific verb and resource: 'Fetch compact summaries' for 'one or more Wikipedia page titles.' It clearly distinguishes this tool from siblings like get_page, get_section, and get_toc by focusing on summaries rather than full page content, sections, or table of contents.
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?
Use is implied: the tool should be used when the caller wants compact summaries of Wikipedia pages. However, it does not explicitly name alternatives such as get_page for full page content or get_section for sections, so agents must infer the boundary without direct guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_tocARead-onlyIdempotent
Return a page's table of contents as section index, title, and anchor.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnly, openWorld, and idempotent. The description adds the specific output components (section index, title, anchor), providing extra detail beyond the annotations. It does not conflict with annotations, and adds value by describing the nature of the result. However, it doesn't discuss error behaviors or edge cases, but the presence of an output schema mitigates that.
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, front-loaded with the action and result. No fluff, every word contributes.
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?
The tool is simple with one parameter and output schema provided. The description is adequate but could slightly benefit from clarifying that 'title' refers to the page title or identifier. Given the simplicity, it's mostly complete for an agent to invoke correctly.
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 schema has one required parameter 'title' with 0% coverage in the description. The description does not explicitly explain what 'title' refers to. Although it's implied it's the page title, the description fails to clarify the parameter's format or meaning. Since coverage is zero, the description must compensate, but it doesn't mention the parameter at all.
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 uses a specific verb ('Return'), names the resource (a page's table of contents), and explicitly lists what it returns (section index, title, anchor). This clearly distinguishes it from sibling tools like get_page or get_section.
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 does not explicitly state when to use this tool over alternatives like get_page or get_section. It implies the purpose but lacks explicit guidance on when it's the appropriate choice. No exclusions or alternative mentions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_articlesARead-onlyIdempotent
Search English Wikipedia and return a compact list of candidate pages.
intent: Short plain-English description of what the user is trying to learn/accomplish. E.g. "background on the Suez crisis for an essay", "verify a claimed date".
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| query | Yes | ||
| intent | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| error | No | |
| results | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the tool is clearly a safe read operation. The description adds useful scoping by specifying 'English Wikipedia' and clarifying the output is a 'compact list of candidate pages' rather than full article content. No contradiction with annotations.
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 short and front-loaded, with the main purpose in the first sentence. The second sentence documents the intent parameter in a concise way and earns its place by adding practical guidance, though it is arguably more of a parameter comment than tool description.
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?
The tool is simple, has robust annotations, and provides an output schema, so the description does not need to explain return structures. It covers the core search behavior and the non-obvious intent parameter well. Some missing guidance about when to prefer this over sibling retrieval tools keeps it from a 5.
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 schema has 0% description coverage, so the description partially compensates: it explains the intent parameter with an example and implies the meaning of query via 'Search English Wikipedia.' However, the limit parameter is not explicitly described, though its role is reasonably inferable from 'compact list' and schema defaults.
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 uses a specific verb and resource: 'Search English Wikipedia and return a compact list of candidate pages.' This clearly distinguishes it from sibling tools like get_page, get_section, and get_summaries, which retrieve specific content rather than searching for candidates.
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 implies search-as-discovery usage by mentioning 'candidate pages,' but it does not explicitly say when to use this tool vs. get_page or other siblings. It gives no exclusion rules or alternative guidance, so usage context is inferred rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
skill_readARead-onlyIdempotent
Read a usage skill (markdown) by name — see skills_list for names. Read 'interpreting-errors' after any error or empty result to recover.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnly and idempotent, so the description adds value by specifying the content is markdown and providing a recovery recommendation. No contradictions, though it doesn't describe behavior on missing/not-found cases, which is acceptable given openWorldHint.
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?
Exactly two sentences with no unnecessary words, direct and to the point, well-structured.
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 it's a simple read operation with openWorldHint and no output schema, the description sufficiently covers purpose and usage. It doesn't elaborate on return structure, but that's not necessary for a basic retrieval tool. The recovery hint adds practical completeness.
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 schema has no description for 'name' (0% coverage). The description partially compensates by saying 'by name' and pointing to skills_list for names, but doesn't specify format, case-sensitivity, or other constraints. This is adequate but not thorough.
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 reads a specific usage skill by name and distinguishes it from skills_list (which lists skills). The verb 'read' and resource 'usage skill' are explicit.
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 gives explicit when-to-use guidance: 'Read 'interpreting-errors' after any error or empty result to recover.' It also directs users to skills_list for valid names, covering prerequisites and selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
skills_listARead-onlyIdempotent
List usage skills for this server. Read one with skill_read(name) whenever a tool returns an error or an empty result and the next step is unclear.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the description doesn't need to repeat safety. It adds the contextual tip about using skill_read after errors, which goes beyond the annotations. No contradictions.
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 two sentences, front-loaded with the purpose, and includes a practical usage hint without any fluff. 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 tool's simplicity (no parameters, annotations present, output schema available), the description fully covers purpose and usage context. It is complete for an agent to decide when to invoke it.
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, so the schema covers everything. Per guidelines, a baseline of 4 is appropriate when no parameters need description; the description doesn't need to add param semantics.
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: 'List usage skills for this server.' It uses a specific verb (List) and resource (usage skills), and distinguishes itself from sibling tools like skill_read by focusing on listing rather than reading specific skills.
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 explicit usage guidance: 'Read one with skill_read(name) whenever a tool returns an error or an empty result and the next step is unclear.' This tells the agent when to use this tool and even names the alternative tool (skill_read) for follow-up.
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.
4 tool updates
v0.5.2- Changed
get_page1 field changed- added
Input schema / properties / intentAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Intent" +}
- Changed
search_articles6 fields changed- added
Input schema / properties / intentAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "title": "Intent" +} - added
Output schema / properties / errorAdded value: +{ + "default": null, + "title": "Error", + "type": "string" +} - removed
Output schema / properties / resultRemoved value: -{ - "title": "Result", - "type": "string" -} - added
Output schema / properties / resultsAdded value: +{ + "default": null, + "items": { + "additionalProperties": { + "type": "string" + }, + "type": "object" + }, + "title": "Results", + "type": "array" +} - removed
Output schema / requiredRemoved value: -[ - "result" -] - changed
Output schema / titlePrevious value: -"search_articlesOutput"New value: +"_SearchArticlesOutput"
- Added
skill_read - Added
skills_list
5 tool updates
v0.1.0- First observed
get_page - First observed
get_section - First observed
get_summaries - First observed
get_toc - First observed
search_articles
TDQS
The tools are mostly distinct: get_page retrieves full text, get_section retrieves a specific section, get_summaries retrieves summaries, get_toc returns the table of contents, and search_articles finds candidates. However, get_page and get_summaries could overlap slightly in use cases (full text vs. summary) and the skills_list/skill_read pair is clearly distinct. Overall, minimal overlap.
All tools consistently follow a verb_noun pattern with get_ prefix and lowercase nouns: get_page, get_section, get_summaries, get_toc, search_articles, skills_list, skill_read. The pattern is predictable and consistent.
7 tools is within the ideal 3-15 range. Each tool serves a clear purpose for interacting with Wikipedia: search, read full page, read section, get summary, get TOC, and skill management. No redundant tools.
The set covers the core Wikipedia read operations: search, full page, section, summary, TOC. Missing might be a way to get page metadata or links, but for a read-only reference server this is well-covered. No obvious dead ends.
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
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
Web search, fetch, extract, and research for AI agents. Markdown output + AI-synthesized answers.
Reduces AI Agent token usage by 40% via three-stage SOP workflow.
Concise English Wikipedia summaries — paid per call (x402/credits), 1 tools
Related MCP Servers
- AlicenseAqualityCmaintenanceEnables LLMs to search for keywords and fetch full page content from Wikipedia across various languages. It provides direct access to Wikipedia information through search and fetch tools.24MIT
- AlicenseAqualityDmaintenanceEnables AI assistants to access Wikipedia content, search articles, retrieve historical events, and fetch images through the Wikipedia API.4311MIT
- FlicenseNot gradedqualityDmaintenanceProvides comprehensive Wikipedia access for AI assistants via MCP Streamable HTTP transport, enabling search, article retrieval, summaries, section analysis, link discovery, and multi-language support.2-
- FlicenseNot gradedqualityDmaintenanceEnables searching and retrieving Wikipedia content across multiple languages, including article summaries, sections, coordinates, and related topics.-
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/surendranb/wikipedia-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server