- Home
- MCP servers
- Function Hub
Function Hub
- javascript
0
GitHub Stars
javascript
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"segun-mcp-server-function-hub": {
"command": "npx",
"args": [
"-y",
"github:segun/mcp-server-function-hub"
],
"env": {
"API_KEY": "<YOUR_API_KEY>"
}
}
}
}The Function Hub MCP Server provides an MCP interface for the Function Hub API, allowing MCP clients to connect, authenticate with an API key, and perform hub-related actions via a lightweight, reusable server started through NPX.
How to use
You can connect to the Function Hub MCP Server from any MCP client by starting the server with an API key and then directing your client to the appropriate MCP endpoint. Use your API key to authorize requests, and run the server using NPX to pull the latest version from the function-hub MCP package. This setup is designed for quick experimentation and integration with Claude Desktop or other MCP-enabled clients.
How to install
Prerequisites you need before starting are Node.js (for NPX) and access to your API key for the Function Hub.
Install and run the server using NPX with the exact command shown:
{
"mcpServers": {
"function-hub": {
"command": "npx",
"args": [
"-y",
"github:segun/mcp-server-function-hub"
],
"env": {
"API_KEY": "<YOUR_API_KEY>"
}
}
}
}
Additional sections
Build and run details are also provided if you want to containerize the MCP server. The server can be built into a Docker image for distribution and deployment. You can customize the API key and environment settings as needed for your environment.
Build a Docker image using the provided Dockerfile definition for production or testing environments. The following command builds the image and tags it for easy reference in your environment.
docker build -t mcp/google-maps -f src/google-maps/Dockerfile .