Jaizkibel/mcp-server
If you are the rightful owner of mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
A Python implementation of a Model Context Protocol (MCP) server providing tools for AI assistants in a secure environment.
MCP Server
A Python implementation of a Model Context Protocol (MCP) server that provides various tools for AI assistants to perform actions in a secure and controlled environment.
Be aware that this README is mostly written by AI.
Installation
- Make sure you have Python 3.12+ installed
- Clone this repository
- Install the dependencies:
pip install -e .
Or use a modern Python package manager like uv:
uv pip install -e .
Configuration
The MCP server requires a configuration file at ~/.mcp-server/config.yml with the following structure:
# Operating system
os: Linux
# Brave Search API configuration
braveSearch:
apiUrl: "https://api.search.brave.com/res/v1/web/search"
apiKey: "your-brave-api-key"
# Database connection settings
database:
min_size: 1
max_size: 3
max_queries: 5000 # optional: connections are recycled after this many queries
max_inactive_connection_lifetime: 300 # optional: seconds
# Database connection profiles
musiciandb: # This is referenced by --db-name parameter
vendor: postgresql
dbname: "postgresdb"
host: "localhost"
port: 5432
readonly:
# credentials for readonly access
username: "readonly"
password: "readonly"
full:
# credentials for full access
username: "admin"
password: "secret"
# Browser command for opening URLs
browserCommand: firefox
Gradle Setup
To make use the get_sourcetool in Gradle project, you need to add this task to build.gradle
tasks.register('listClassesInDeps') {
doLast {
configurations.compileClasspath.resolve().each { file ->
if (file.name.endsWith('.jar')) {
println file.absolutePath
}
}
configurations.runtimeClasspath.resolve().each { file ->
if (file.name.endsWith('.jar')) {
println file.absolutePath
}
}
}
}
Usage
Run the MCP server with:
python mcp_server_low.py [--project-folder /path/to/workspace] [--db-name musiciandb] [--build-tool Maven|Gradle]
Parameters:
--project-folder: Optional. Path to the current workspace or project directory--db-name: Optional. Name of the database configuration to use from the config file--build-tool: Optional. Specify 'Maven' or 'Gradle' for Java project support
VS Code Integration for GitHub Copilot
To integrate this MCP server with VS Code for use with GitHub Copilot, follow these steps:
Prerequisites
- Make sure you have the latest version of VS Code installed
- Ensure that GitHub Copilot is installed and properly configured in VS Code
- The MCP server must be running on your local machine
Configuration Steps
Open VS Code settings (File > Preferences > Settings or press Cmd+, on macOS) and add the following configuration to your settings.json:
"github.copilot.advanced": {
"mcp": {
"servers": [
{
"name": "Python MCP Server",
"transport": "stdio",
"command": "uv",
"args": [
"/path/to/your/mcp-server/mcp_server_low.py",
"--project-folder",
"${workspaceFolder}",
"--db-name",
"musiciandb",
"--build-tool",
"Maven"
],
"description": "Local Python MCP Server providing database, web, and system tools"
}
]
}
}
-
Replace
/path/to/your/mcp-server/mcp_server.pywith the actual path to your MCP server script andyour-db-namewith your database configuration name. -
Save the settings and restart VS Code.
Using MCP Tools in Copilot
Once configured, GitHub Copilot can now access and use the tools provided by your MCP server:
-
Open Copilot Chat in VS Code (press
Ctrl+Shift+Ior click on the Copilot Chat icon) -
Ask Copilot to perform actions using the tools provided by the MCP server:
Can you get the current time from the system?Please search for information about Python best practices. -
Copilot will automatically use the appropriate MCP tools to fulfill your requests.
Troubleshooting
If you encounter issues with the MCP server integration:
- Check that the MCP server is running correctly
- Verify your VS Code settings are correct
- Look for error messages in the VS Code Developer Tools (Help > Toggle Developer Tools)
- Check the
mcp_server.logfile for any server-side errors
Note for Team Usage
To share the MCP server configuration with your team:
- Add the MCP server configuration to your workspace settings instead of user settings
- Store the configuration in a
.vscode/settings.jsonfile in your repository - Ensure all team members have the MCP server installed and properly configured
Available Tools
The MCP server provides the following tools for AI assistants:
Database Operations
readonly_sql_query(dbname, query): Executes a read-only SQL query on a PostgreSQL or SqlServer database and returns the result as JSONmodifying_sql_statement(dbname, statement): Executes a SQL statement on a PostgreSQL or SqlServer database to modify data (only available if "full" database credentials are configured)
Web Interaction
web_search(query): Search the web for information using the Brave Search API. Returns URLs, descriptions, and fetched content from top results (HTML content is converted to text)open_in_browser(url): Opens a URL or HTML file in the local browserhttp_get_request(url, headers): Makes an HTTP GET request to the specified URL with optional headers
Java Build Tools (only available when buildTool is configured)
get_source(class_name): Returns the source code of a Java class (does not work with Java standard library classes)get_javadoc(class_name): Gets Javadoc for a Java class (does not work with Java standard library classes)
API
MCP Server
The server uses the low level MCP implementation from the MCP Python package, configured to run over stdio transport for secure communication. Low level is needed for 2 reasons:
- Entries in tool list depend on start arguments
roots/listis used to determine project workspace path if offered by MCP client (Copilot does)
MCP Server Methods
@server.list_tools(): Decorator for registering a function that returns available MCP tools@server.call_tool(): Decorator for registering a function that handles all tool callsserver.run(): Starts the MCP server with stdio transport and initialization optionsserver_lifespan(): Async context manager for managing server startup and shutdown lifecycle, including resource cleanup
Client Usage
Clients can connect to this MCP server using any MCP client implementation. See the Model Context Protocol repository for client examples.
Development
Prerequisites
- Python 3.12+
- PostgreSQL (for database tools)
- Brave Search API key (for web search functionality)
Project Structure
mcp_server_low.py: Main server implementation with tool definitionspyproject.toml: Project and package management configuration (usinguv)bin/: Contains helper scripts and executablesgradle-decompile.sh: Script for decompiling Gradle projectsjd-cli.jar: Java Decompiler command-line tool
tests/: Contains unit and integration teststest_mcp_low.py: Tests for the low-level MCP servertest_page.html: Test HTML page
utils/: Utility modulesargs.py: Command-line argument parsingdb.py: Database connection and context managementhelpers.py: General utility functionsmcp.py: MCP-related utilitiesweb.py: HTTP client utilities and HTML processing