sufetch
Provides type-safe API client and MCP tools for DigitalOcean's cloud platform API (200+ endpoints), allowing AI assistants to explore and generate code for managing droplets, domains, and other resources.
Provides type-safe API client and MCP tools for Hetzner Cloud API (100+ endpoints), allowing AI assistants to explore and generate code for managing cloud servers, networks, and other infrastructure.
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., "@sufetchGenerate a DigitalOcean client to list all droplets"
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.
SuFetch
Type-safe OpenAPI clients with MCP server for AI-driven API exploration
Table of Contents
What is SuFetch?
SuFetch combines two powerful tools:
Type-Safe API Clients - Generate fully-typed TypeScript clients from OpenAPI specifications
MCP Server - Let AI assistants (like Claude) explore your APIs and generate code
Built with apiful for type-safe OpenAPI clients.
Features
✨ Fully Type-Safe - Autocomplete and type checking for all API calls
🤖 MCP Integration - AI assistants can explore and generate code for your APIs
🔄 Auto-Discovery - Automatic service detection and type generation
🛠️ Modern Stack - TypeScript 5.7, ESNext, strict mode
🧪 Well-Tested - 76+ tests with >60% coverage
Installation
For Using the API Client
# npm
npm install sufetch
# pnpm
pnpm add sufetch
# yarn
yarn add sufetchFor MCP Server (Global)
# Install globally
npm install -g sufetch
# Verify installation
sufetch-mcp --versionFor Development
git clone https://github.com/productdevbook/sufetch.git
cd sufetch
pnpm install
pnpm buildQuick Start
Using the Type-Safe API Client
import { createClient, cloud } from 'sufetch/hetzner'
// Create a typed client
const client = createClient({
baseURL: 'https://api.hetzner.cloud/v1',
headers: {
'Authorization': 'Bearer your-api-token'
}
}).with(cloud)
// Fully typed requests and responses
const servers = await client('/servers', {
method: 'GET' // ✅ Type-checked
})
// TypeScript knows the response type
console.log(servers.servers) // ✅ Autocomplete worksSee Supported APIs for all available services.
Type Helpers for Advanced Type Safety
Extract specific types from endpoints for maximum type safety:
import type { HetznerCloud } from 'sufetch/hetzner'
// Extract request body type
type CreateServerBody = HetznerCloud<'/servers', 'post'>['request']
// Extract response type
type GetServerResponse = HetznerCloud<'/servers/{id}', 'get'>['response']
// Extract query parameters
type ListServersQuery = HetznerCloud<'/servers', 'get'>['query']
// Extract path parameters
type ServerPathParams = HetznerCloud<'/servers/{id}', 'get'>['path']
// Use in functions for type safety
function processServer(server: GetServerResponse) {
console.log(server.server.id) // ✅ Full autocomplete
console.log(server.server.name) // ✅ Type-checked
}
function createServer(body: CreateServerBody) {
// TypeScript enforces correct structure
return client('/servers', {
method: 'POST',
body // ✅ Type-safe
})
}Available properties:
['request']- Request body type['response']- Success response (200/201)['query']- Query parameters['path']- Path parameters['responses'][status]- Specific status code response
Works with all APIs: HetznerCloud, DigitalOcean, OryKaratos, OryHydra.
Using with AI Assistants (MCP)
See the MCP Server Setup section below.
Supported APIs
SuFetch currently includes:
API | Description | Endpoints | Import |
DigitalOcean | Complete cloud platform API | 200+ |
|
Hetzner Cloud | Cloud infrastructure management | 100+ |
|
Ory Kratos | Identity & user management | 50+ |
|
Ory Hydra | OAuth 2.0 & OpenID Connect | 40+ |
|
Want to add more? See Adding New APIs.
MCP Server Setup
Quick Setup
1. Install (choose one):
npm install -g sufetch # Global
npx sufetch-mcp # No install2. Configure:
Edit config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"sufetch": {
"command": "sufetch-mcp"
}
}
}Restart Claude Desktop.
claude mcp add --transport stdio --scope project sufetch -- sufetch-mcpOr create .mcp.json:
{
"mcpServers": {
"sufetch": {
"command": "sufetch-mcp"
}
}
}3. Test: Ask Claude: "List available APIs using sufetch"
Available MCP Tools
Tool | Description |
| List all available APIs |
| Get API metadata |
| Search by path/method/description |
| Get full endpoint specs |
| Get data schemas |
| Generate TypeScript code |
| Get API quickstart guide |
Adding New APIs
Create directory:
mkdir -p openapi-specs/myapiAdd your
myapi.jsonOpenAPI specCopy
apiful.config.tsandindex.tsfromopenapi-specs/ory/as templateRun
pnpm build
Done! Your API is now available as sufetch/myapi and in the MCP server.
See CLAUDE.md for detailed instructions.
Development
pnpm install # Install
pnpm build # Build
pnpm test # Test
pnpm lint:fix # LintSee CLAUDE.md for architecture, build pipeline, and contribution guide.
Troubleshooting
# Test server works
sufetch-mcp # Should output: "SuFetch MCP server running on stdio"
# Check config
claude mcp list # For Claude Code
cat .mcp.json # Check file exists
# Restart Claude Desktop (if using Desktop)rm -rf node_modules pnpm-lock.yaml dist
pnpm install && pnpm buildStill stuck? Open an issue with your Node version and error message.
Contributing
Contributions welcome! See CONTRIBUTING.md.
git clone https://github.com/productdevbook/sufetch.git
cd sufetch
pnpm install && pnpm build
# Make changes, run `pnpm test && pnpm lint:fix`Links
CLAUDE.md - Architecture & development guide
Model Context Protocol - MCP docs
License
MIT © 2025
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/productdevbook/sufetch'
If you have feedback or need assistance with the MCP directory API, please join our Discord server