wordsapi
3.9
The `wordsapi` MCP server is a comprehensive tool for retrieving detailed information about English words.
The wordsapi
MCP server is a comprehensive tool for retrieving detailed information about English words. It serves as a powerful resource for developers and language enthusiasts, providing a wide array of data points on over 300,000 English words.
Features
- {'name': 'General Information', 'description': 'Access detailed definitions, synonyms, antonyms, pronunciation, syllables, and frequency of words.'}
- {'name': 'Word Relationships', 'description': 'Explore related words in various contexts, such as types, parts, instances, and similarities.'}
- {'name': 'Search and Discovery', 'description': 'Retrieve random words and use custom search parameters to find words matching specific criteria.'}
- {'name': 'Categorization and Usage', 'description': 'Determine categories and usages a word belongs to, including geographical and domain-specific contexts.'}
Usage with Different Platforms
python
python
import requests
url = "https://wordsapi.com/mcp"
params = {
'word': 'example',
'api_key': 'your_api_key'
}
response = requests.get(url, params=params)
print(response.json())
javascript
javascript
fetch('https://wordsapi.com/mcp?word=example&api_key=your_api_key')
.then(response => response.json())
.then(data => console.log(data));