An MCP (Model Context Protocol) server that lets Claude, ChatGPT, and other LLM agents search and discover APIs using natural language via Semantic API. Ask for any API capability in plain English and get back endpoint details, parameters, auth info, and code snippets. Or run directly with uvx: Sign up at semanticapi.dev to get your API key. Add to your Claude Desktop config (~/Library/Application
Add this skill
npx mdskills install peter-j-thompson/semanticapi-mcpEnables natural language API discovery with three well-defined tools and clear setup instructions
1# Semantic API MCP Server23<!-- mcp-name: io.github.peter-j-thompson/semanticapi -->45An [MCP (Model Context Protocol)](https://modelcontextprotocol.io) server that lets Claude, ChatGPT, and other LLM agents search and discover APIs using natural language via [Semantic API](https://semanticapi.dev). Ask for any API capability in plain English and get back endpoint details, parameters, auth info, and code snippets.67## Install89```bash10pip install semanticapi-mcp11```1213Or run directly with uvx:1415```bash16uvx semanticapi-mcp17```1819## Configuration2021### Get an API Key2223Sign up at [semanticapi.dev](https://semanticapi.dev) to get your API key.2425### Environment Variables2627| Variable | Required | Default | Description |28|----------|----------|---------|-------------|29| `SEMANTIC_API_KEY` | Yes | — | Your Semantic API key |30| `SEMANTIC_API_URL` | No | `https://semanticapi.dev` | API base URL override |3132### Claude Desktop3334Add to your Claude Desktop config (`~/Library/Application Support/Claude/claude_desktop_config.json`):3536```json37{38 "mcpServers": {39 "semanticapi": {40 "command": "uvx",41 "args": ["semanticapi-mcp"],42 "env": {43 "SEMANTIC_API_KEY": "your-api-key-here"44 }45 }46 }47}48```4950Or if installed with pip:5152```json53{54 "mcpServers": {55 "semanticapi": {56 "command": "semanticapi-mcp",57 "env": {58 "SEMANTIC_API_KEY": "your-api-key-here"59 }60 }61 }62}63```6465## Tools6667### `semantic_query`6869Search for an API capability using natural language.7071**Inputs:**72- `query` (string, required) — What you want to do, e.g. "send an email with Gmail"73- `auto_discover` (boolean, optional, default: true) — Auto-discover new APIs if needed7475**Example:** "Find me an API to convert currencies in real-time"7677### `semantic_discover`7879Deep discovery of a specific provider/API by name and intent.8081**Inputs:**82- `provider_name` (string, required) — API provider name, e.g. "stripe", "twilio"83- `user_intent` (string, optional) — What you want to do with this API8485**Example:** Discover Stripe's capabilities for "process a refund"8687### `semantic_discover_url`8889Analyze any API from its documentation URL.9091**Inputs:**92- `url` (string, required) — URL of the API documentation93- `user_intent` (string, optional) — What you want to do with this API9495**Example:** Analyze `https://docs.example.com/api` to generate a provider config9697## Related9899- **[Semantic API](https://semanticapi.dev)** — The hosted API service100- **[semanticapi-engine](https://github.com/peter-j-thompson/semanticapi-engine)** — Open source engine (AGPL-3.0)101- **[semantic-api-skill](https://github.com/peter-j-thompson/semantic-api-skill)** — Agent framework skill package102- **[CLI Tool](https://github.com/peter-j-thompson/semanticapi-cli)** — Command-line interface (`pip install semanticapi-cli`)103104<!-- mcp-name: io.github.peter-j-thompson/semanticapi -->105106## License107108MIT109
Full transparency — inspect the skill content before installing.