Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_wikipedia | Search Wikipedia for articles matching a query. Parameters: query: The search term to look up on Wikipedia. limit: Maximum number of results to return (1-500). Returns a dictionary with the search query, results, status, and additional metadata. If the query is empty or invalid, the status will be 'error' and an explanatory message is included. |
| test_wikipedia_connectivity | Provide diagnostics for Wikipedia API connectivity. Returns the base API URL, language, site information, and response time in milliseconds. If connectivity fails, status will be 'failed' with error details. |
| get_article | Get the full content of a Wikipedia article. Returns a dictionary containing article details or an error message if retrieval fails. |
| get_summary | Get a summary of a Wikipedia article. Returns a dictionary with the title and summary string. On error, includes an error message instead of a summary. |
| summarize_article_for_query | Get a summary of a Wikipedia article tailored to a specific query. The summary is a snippet around the query within the article text or summary. The max_length parameter controls the length of the snippet. |
| summarize_article_section | Get a summary of a specific section of a Wikipedia article. Returns a dictionary containing the section summary or an error. |
| extract_key_facts | Extract key facts from a Wikipedia article, optionally focused on a topic. Returns a dictionary containing a list of facts. |
| get_related_topics | Get topics related to a Wikipedia article based on links and categories. Returns a list of related topics up to the specified limit. |
| get_sections | Get the sections of a Wikipedia article. Returns a dictionary with the article title and list of sections. |
| get_links | Get the links contained within a Wikipedia article. Returns a dictionary with the article title and list of links. |
| get_coordinates | Get the coordinates of a Wikipedia article. Returns a dictionary containing coordinate information. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |