configfacets_mcp
If you are the rightful owner of configfacets_mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Configfacets MCP Server is a tool for managing and deploying model context protocols using the Configfacets framework.
configfacets_mcp
Configfacets MCP Server
Install
We recommend using uv to manage your Python projects.
uv init <repository_name>
cd <repository_name>
Then add Configfacets MCP server to your project dependencies
uv add "configfacets-mcp"
Initialize your MCP server
coreconcepts.py
from configfacets.server import ConfigfacetsMCP
mcp_server = ConfigfacetsMCP(
server="myserver"
repository="configfacets/core-concepts",
version="appconfigs",
api_key="<your apikey>",
)
mcp_server.run()
Build and Publish
uv build
uv publish
{
"mcpServers": {
"configfacets": {
"command": "uv",
"args": [
"--directory",
"<absolute path>/coreconcepts_mcp",
"run",
"coreconcepts.py"
]
}
}
}