br-mcp-server
Business Request Server is a Demo PoC MCP server designed for use in other PoC projects.
The Business Request Server is a proof-of-concept Model Context Protocol (MCP) server that serves as a demonstration for integrating MCP technology into other proof-of-concept projects. It is designed to handle business requests and provide a platform for testing various functions such as templates and search filters. The server can be run locally or via Docker, and it includes specific instructions for handling dependencies like pymssql on different operating systems. The server also supports manual deployment in Azure, with plans for CI/CD integration in the future. Comprehensive documentation is available to guide users through setup and usage.
Features
- Local and Docker Deployment: The server can be run locally or through Docker, providing flexibility in deployment options.
- Search and Filter Functions: Includes functions for searching business requests and filtering results based on specific criteria.
- Dependency Management: Provides detailed instructions for managing dependencies like pymssql, especially on Mac OSX.
- Azure Deployment: Supports manual deployment in Azure with CLI instructions, with future plans for CI/CD integration.
- Comprehensive Documentation: Offers extensive documentation and tutorials for setup and usage.
MCP Resources
- {'Using this': 'https://github.com/modelcontextprotocol/python-sdk'}
- {'FastMCP documentation': 'https://gofastmcp.com/servers/context'}
- {'MCP OAuth 2.0 Authentication': 'https://modelcontextprotocol.io/specification/2025-03-26/basic/authorization'}
Usage with Different Platforms
Local Deployment
bash
uv venv
uv pip install -e .
mcp dev server.py
# or alternatively
python server.py
Docker Deployment
bash
docker build -t mcp-bits:local .
docker run -p 8080:8080 --env-file ./.env --name mcp-bits-container mcp-bits:local
pymssql on Mac OSX
bash
brew install freetds
uv pip uninstall pymssql
uv pip install --pre --no-binary :all: pymssql --no-cache --no-build-isolation
Azure Deployment
bash
az webapp deployment source config-local-git \
--name <WebAppName> \
--resource-group <ResourceGroupName>
git remote add azure <GitURLFromPreviousStep>
git push azure main
Related MCP Servers
View all developer_tools servers →context7
by upstash
Context7 MCP provides up-to-date, version-specific documentation and code examples directly into your prompt, enhancing the capabilities of LLMs by ensuring they use the latest information.
Sequential Thinking
by modelcontextprotocol
An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process.
git-mcp
by idosal
GitMCP is a free, open-source, remote Model Context Protocol (MCP) server that transforms GitHub projects into documentation hubs, enabling AI tools to access up-to-date documentation and code.
Everything MCP Server
by modelcontextprotocol
The Everything MCP Server is a comprehensive test server designed to demonstrate the full capabilities of the Model Context Protocol (MCP). It is not intended for production use but serves as a valuable tool for developers building MCP clients.
exa-mcp-server
by exa-labs
A Model Context Protocol (MCP) server allows AI assistants to use the Exa AI Search API for real-time web searches in a secure manner.
repomix
by yamadashy
Repomix is a tool that packs your codebase into AI-friendly formats, making it easier to use with AI tools like LLMs.
mcpdoc
by langchain-ai
MCP LLMS-TXT Documentation Server provides a structured way to manage and retrieve LLM documentation using the Model Context Protocol.