Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    neversight

    api-integration

    neversight/api-integration
    Coding
    2
    2 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Connect to REST APIs, handle authentication, and process JSON responses

    SKILL.md

    API Integration

    Connect to external REST APIs and process responses.

    Capabilities

    • Make HTTP requests (GET, POST, PUT, DELETE)
    • Handle authentication (API keys, OAuth, Bearer tokens)
    • Parse and transform JSON responses
    • Handle pagination and rate limiting

    Authentication Methods

    Method Header Format
    API Key X-API-Key: <key>
    Bearer Authorization: Bearer <token>
    Basic Authorization: Basic <base64>

    Request Template

    import requests
    
    response = requests.get(
        "https://api.example.com/v1/resource",
        headers={"Authorization": "Bearer TOKEN"},
        params={"limit": 100}
    )
    data = response.json()
    

    Error Handling

    • 4xx: Client errors - check request parameters
    • 5xx: Server errors - implement retry with backoff
    • Timeout: Set reasonable timeouts (30s default)
    Recommended Servers
    Postman
    Postman
    WorkOS
    WorkOS
    ThinAir Data
    ThinAir Data
    Repository
    neversight/skills_feed