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 🙏

© 2025 – Pkg Stats / Ryan Hefner

femini-apis

v0.1.0

Published

MCP server for FeedMob Assistant Internal API - provides comprehensive access to clients, partners, campaigns, and metrics

Readme

femini-apis

MCP server for FeedMob Assistant Internal API - provides comprehensive access to clients, partners, campaigns, and metrics.

Installation

For Cline (VS Code Extension)

Add to your MCP settings file (cline_mcp_settings.json):

{
  "mcpServers": {
    "femini-api": {
      "disabled": false,
      "timeout": 60,
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "femini-apis"],
      "env": {
        "FEMINI_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

For Claude Desktop

Add to your Claude Desktop configuration file (claude_desktop_config.json):

{
  "mcpServers": {
    "femini-api": {
      "command": "npx",
      "args": ["-y", "femini-apis"],
      "env": {
        "FEMINI_API_TOKEN": "your-api-token-here"
      }
    }
  }
}

Configuration

Required Environment Variables

  • FEMINI_API_TOKEN: Your FeedMob Assistant API authentication token (required)

Optional Environment Variables

  • FEMINI_API_BASE_URL: API base URL (default: https://assistant.feedmob.ai)

Available Tools

This MCP server provides 23 tools for accessing the FeedMob Assistant API:

Client Management

  • get_clients - List clients with optional filters
  • get_client - Get detailed client information by ID
  • get_client_documents - List client documents

Partner Management

  • get_partners - List partners with optional filters
  • get_partner - Get detailed partner information by ID
  • get_partner_documents - List partner documents
  • get_partner_categories - List all partner categories

Campaign Management

  • get_campaigns - List campaigns with optional filters
  • get_campaign - Get detailed campaign information by ID

Mobile Apps

  • get_mobile_apps - List mobile apps with optional filters
  • get_mobile_app - Get detailed mobile app information by ID

Click URLs

  • get_click_urls - List all click URLs
  • get_click_url - Get detailed click URL information by legacy ID
  • get_click_url_email_logs - Get email logs for a specific click URL

Playbooks

  • get_playbooks - List accessible playbooks
  • get_playbook - Get detailed playbook information
  • get_playbook_item - Get playbook item content

Metrics & Analytics

  • get_daily_metrics - Get time-series metrics data for campaigns
  • get_client_billings - List client billings for a specific month
  • get_vendor_billings - List vendor billings for a specific month
  • get_vendor_payout_analysis - Get vendor payout analysis

Other

  • get_pods - List all pods

Usage Examples

List Active Clients

// Using get_clients tool
{
  "active_status": "active",
  "pod_id": 1
}

Get Campaign Metrics

// Using get_daily_metrics tool
{
  "metric": "gross_spend",
  "start_date": "2024-11-01",
  "end_date": "2024-11-30",
  "client_id": 194
}

Get Monthly Billings

// Using get_client_billings tool
{
  "month": "2024-11"
}

Authentication

To obtain your API token:

  1. Log in to the FeedMob Assistant interface
  2. Click on your profile button
  3. Copy your authentication token

API Documentation

For detailed API documentation, refer to the OpenAPI specification at the FeedMob Assistant API.

Support

For issues or questions, please contact the FeedMob team.

License

MIT