npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

worklink-mcp

v1.0.3

Published

MCP server for WorkLink Partner API — search Syria jobs and tenders

Downloads

410

Readme

worklink-mcp

npm version License: MIT

MCP server for the WorkLink Partner API — search live job vacancies and tenders in Syria.

Get a Token

  1. Go to https://worklink.sy/api-access
  2. Fill the form (choose vacancies and/or tenders)
  3. Wait for WorkLink to issue your token

Install

No installation needed — run directly with npx:

npx -y worklink-mcp

Configure

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "worklink": {
      "command": "npx",
      "args": ["-y", "worklink-mcp"],
      "env": {
        "WORKLINK_API_TOKEN": "your-token-here"
      }
    }
  }
}

OpenCode

Add to .opencode.json:

{
  "mcp": {
    "worklink": {
      "command": "npx",
      "args": ["-y", "worklink-mcp"],
      "env": {
        "WORKLINK_API_TOKEN": "your-token-here"
      }
    }
  }
}

Cursor / Windsurf

Add to your MCP settings (.cursor/mcp.json or equivalent):

{
  "mcpServers": {
    "worklink": {
      "command": "npx",
      "args": ["-y", "worklink-mcp"],
      "env": {
        "WORKLINK_API_TOKEN": "your-token-here"
      }
    }
  }
}

ChatGPT

In ChatGPT settings > MCP Servers > Add server:

  • Command: npx -y worklink-mcp
  • Env: WORKLINK_API_TOKEN=your-token-here

Tools

| Tool | Description | |------|-------------| | list_vacancies | List active job vacancies with pagination, category/company/open filters | | get_vacancy | Get full details of a single vacancy by slug | | list_tenders | List published tenders with pagination and filters | | get_tender | Get tender preview by slug (full body on WorkLink) |

Example Prompts

Once configured, ask your AI assistant:

  • "Show me the latest job vacancies in Damascus"
  • "Find engineering jobs with salary above 500"
  • "What tenders are open this month?"
  • "Get details for the vacancy at company X"

Troubleshooting

"WORKLINK_API_TOKEN environment variable is required"

The token is missing. Make sure you set WORKLINK_API_TOKEN in the MCP server config's env block (see Configure section above).

"WorkLink API error (401): Unauthorized"

Your token is invalid or expired. Get a new one at https://worklink.sy/api-access.

"WorkLink API error (429): Too Many Requests"

You've hit the rate limit (120 requests/minute). The server automatically retries with exponential backoff, but if this persists, wait a minute before trying again.

Request timed out

The server has a 30-second timeout per request. If WorkLink's API is slow, the request will be retried up to 3 times before failing.

Rate Limiting

The server respects WorkLink's 120 requests/minute limit with built-in throttling. If the limit is hit, requests are automatically retried with exponential backoff.

License

MIT