We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MikkoParkkola/mcp-gateway'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
fulcrum: "1.0"
name: wikipedia_summary
description: Get Wikipedia article summary with extract and thumbnail. Perfect for quick knowledge lookups.
schema:
input:
type: object
properties:
title:
type: string
description: Article title (use underscores for spaces)
examples:
- "Albert_Einstein"
- "Helsinki"
- "Machine_learning"
language:
type: string
description: Wikipedia language code
default: en
examples:
- "en"
- "fi"
- "nl"
required:
- title
output:
type: object
properties:
type:
type: string
title:
type: string
displaytitle:
type: string
extract:
type: string
description: Plain text summary
extract_html:
type: string
description: HTML formatted summary
description:
type: string
description: Short description/subtitle
thumbnail:
type: object
properties:
source:
type: string
format: uri
width:
type: integer
height:
type: integer
originalimage:
type: object
content_urls:
type: object
properties:
desktop:
type: object
mobile:
type: object
coordinates:
type: object
description: Geographic coordinates if applicable
providers:
primary:
service: rest
cost_per_call: 0
timeout: 10
config:
base_url: https://en.wikipedia.org
path: /api/rest_v1/page/summary/{title}
method: GET
headers:
User-Agent: "Fulcrum-MCP/1.0 (https://github.com/MikkoParkkola/fulcrum; mikko@parkkola.net)"
Accept: "application/json"
# Note: language param not yet supported in REST provider URL substitution
# For non-English, use wikipedia_search instead
cache:
strategy: exact
ttl: 86400 # 24 hours
auth:
required: false
type: none
metadata:
category: knowledge
tags:
- wikipedia
- encyclopedia
- knowledge
- summary
cost_category: free
execution_time: fast
read_only: true
docs: https://www.mediawiki.org/wiki/API:REST_API/Reference#Get_page_summary