UniFuncs MCP server

Provides a bridge to the UniFuncs API for web search and web reading capabilities through TypeScript implementation with Express and NPX commands.
Back to servers
Provider
UniFuncs
Release date
Apr 03, 2025
Language
TypeScript
Package
Stats
543 downloads
3 stars

UniFuncs MCP Server provides a Model Context Protocol (MCP) interface for accessing the UniFuncs API, allowing you to easily integrate UniFuncs capabilities into applications that support the MCP standard.

Installation

The UniFuncs MCP Server can be run directly using NPX without requiring a permanent installation. You'll need an API key from UniFuncs to authenticate your requests.

Getting an API Key

Before using the server, you'll need to obtain an API key from UniFuncs:

  1. Visit https://unifuncs.com/account
  2. Sign up or log in to your account
  3. Generate an API key from your account dashboard

Configuration

Setting Up the MCP Server Configuration

The UniFuncs MCP Server can be configured in your MCP client's configuration file. Add the following configuration to your MCP client's JSON configuration:

{
    "mcpServers": {
        "unifuncs": {
            "command": "npx",
            "args": [
                "-y",
                "@unifuncs/ufn-mcp-server"
            ],
            "env": {
                "UNIFUNCS_API_KEY": "sk-**********"
            }
        }
    }
}

Make sure to replace "sk-**********" with your actual UniFuncs API key.

Usage

Once configured, your MCP client will be able to communicate with UniFuncs API through the MCP server. The server handles all the communication between your MCP client and the UniFuncs API.

Starting the Server

The server will be automatically started by your MCP client when needed, based on the configuration you've provided.

Available Models and Functions

The UniFuncs MCP Server provides access to all models and functions available on the UniFuncs platform. Your MCP client will be able to discover these capabilities through the MCP protocol.

Troubleshooting

If you encounter issues with the MCP server:

  • Verify that your API key is correct and has the necessary permissions
  • Ensure your network allows the server to communicate with the UniFuncs API
  • Check that you have Node.js installed on your system, as NPX requires it to function

How to add this MCP server to Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "cursor-rules-mcp": {
            "command": "npx",
            "args": [
                "-y",
                "cursor-rules-mcp"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later