MCPcopy Index your code
hub / github.com/JimLiu/gpt-api

github.com/JimLiu/gpt-api @main

Chat with this repo
repository ↗ · DeepWiki ↗ · + Follow
11 symbols 44 edges 12 files 0 documented · 0% updated 2y ago★ 231
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

GPT APIs

Build APIs for GPT

✨ Features

  • URL to Markdown

💁‍♀️ How to use

  • Install dependencies npm i

Test from local

$ npm run dev

http://localhost:3333/api/url2md?url=https://baoyu.io

Authentication for your APIs

Add environment variable BEARER_TOKENS if you want to add authentication for your API requests, split mutiple tokens with ,.

BEARER_TOKENS=ABC,DEF

it will allow the requests with header

Authorization: Bearer ABC

or

Authorization: Bearer DEF

Deploy to production

Railway

  • Connect to your Railway project railway link
  • Start the development server railway run yarn dev

Vercel

Deploying to Vercel

Config for OpenAI

Add a new action for you GPT, this is an example for you Schema:

{
  "openapi": "3.1.0",
  "info": {
    "title": "Fetch page content",
    "description": "Retrieves the page data for a url.",
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": "https://<YOUR API HOST>"
    }
  ],
  "paths": {
    "/api/url2md": {
      "get": {
        "description": "Get page content for a specific url",
        "operationId": "GetPageContentByUrl",
        "parameters": [
          {
            "name": "url",
            "in": "query",
            "description": "The page url to retrieve the content for",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "deprecated": false
      }
    }
  },
  "components": {
    "schemas": {}
  }
}

Who is using this?

Core symbols most depended-on inside this repo

isAuthed
called by 3
utils/auth.ts
extract_from_html
called by 2
utils/extracter.ts
crawl
called by 1
utils/crawler.ts
getBearerTokenSet
called by 1
utils/env.ts
getExt
called by 1
utils/extracter.ts
getFirstTag
called by 1
utils/extracter.ts
getInnerTag
called by 1
utils/extracter.ts
extract_from_dom
called by 1
utils/extracter.ts

Shape

Function 11

Languages

TypeScript100%

Modules by API surface

utils/extracter.ts5 symbols
utils/puppeteer.ts1 symbols
utils/env.ts1 symbols
utils/crawler.ts1 symbols
utils/auth.ts1 symbols
routers/url2md.ts1 symbols
routers/html2md.ts1 symbols

For agents

$ claude mcp add gpt-api \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact