MCP Server (fac_mcp_hub)
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Server (fac_mcp_hub)what time is it in New York?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Server
A Model Context Protocol (MCP) server implementation that provides tools and resources for AI model interactions. This server enhances AI capabilities by enabling seamless integration with external tools and data sources, allowing AI models to access real-time information and perform complex operations. By using this MCP server, you can extend your AI's functionality without modifying the core model, making it easier to add new capabilities and maintain separation of concerns.
Resources
GitHub Repository - Source code and development
Documentation - Comprehensive guides and API reference
GitHub Repository - Officially supported MCP servers
Related MCP server: MCP Server
Prerequisites
Python 3.12 or higher
Node.js and npm (if using npx commands in config)
Docker (optional, for containerized deployment)
The Docker setup automatically includes all required dependencies, including Node.js and npm for executing npx commands defined in your configuration file.
Installation
1. Configure Proxies
Set the following environment variables for TI's proxy:
export http_proxy=http://webproxy.ext.ti.com:80
export https_proxy=http://webproxy.ext.ti.com:80
export HTTP_PROXY=http://webproxy.ext.ti.com:80
export HTTPS_PROXY=http://webproxy.ext.ti.com:802. Install UV Package Manager
UV is required to run the MCP server. Install it using pip:
pip install uvFor more information about UV, visit the official documentation.
Running the Server
Local Development
To run the server locally:
uvx mcpo --config config.json --port 1131The server will be available at http://localhost:1131.
Docker Deployment
The application can be run using Docker for a containerized environment.
Quick Start
Build and start the container:
docker-compose up --buildOther Docker Commands
Run in detached mode (background):
docker-compose up -dView container logs:
docker-compose logs -fStop the container:
docker-compose downRebuild after changes:
docker-compose buildConfiguration
The server is configured using config.json. The configuration can include both UV and NPX commands. See the examples below:
{
"mcpServers": {
"time": {
"command": "uvx",
"args": [
"mcp-server-time",
"--local-timezone=America/New_York"
]
},
"weather": {
"command": "npx",
"args": [
"weather-mcp-server",
"--api-key=YOUR_API_KEY"
]
}
}
}Note: When using npx commands in your configuration, the Docker container automatically includes Node.js and npm, so no additional setup is required.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ColdenJohnson/fac_mcp_hub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server