Uber APK Signer MCP Server
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., "@Uber APK Signer MCP ServerSign app.apk using the default debug keystore."
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.
Uber APK Signer MCP Server
An MCP (Model Context Protocol) server that provides access to the Uber APK Signer tool through your chat LLM. This allows you to sign APK files, verify signatures, manage keystores, and perform other APK signing operations directly from your chat interface.
Features
Sign APK Files: Sign APK files using existing keystores
Verify Signatures: Verify the signature of APK files
Keystore Management: List available keystores and create new ones
Flexible Transport: Support for both stdio and TCP transport modes
Configurable: Environment-based configuration for easy customization
Related MCP server: android-mcp
Prerequisites
Node.js 18.0.0 or higher
Uber APK Signer tool installed and accessible in your PATH
Java Runtime Environment (JRE) for APK signing operations
Installation
Clone this repository:
git clone <your-repo-url>
cd uber-apk-signer-mcpInstall dependencies:
npm installBuild the project:
npm run buildConfiguration
The server automatically loads configuration from a .env file in your project directory, or you can set environment variables directly.
Environment Variables
You can configure the server using environment variables:
# Uber APK Signer configuration
export UBER_APK_SIGNER_PATH="/path/to/uber-apk-signer"
export UBER_APK_SIGNER_TIMEOUT=300000
export UBER_APK_SIGNER_LOG_LEVEL=info
# MCP Server configuration
export MCP_SERVER_NAME="uber-apk-signer-mcp"
export MCP_TRANSPORT="stdio" # or "tcp"
export MCP_TCP_HOST="localhost"
export MCP_TCP_PORT=3000
# Security settings
export MCP_ALLOW_INSECURE=false
export MCP_MAX_FILE_SIZE=104857600Using a .env File (Recommended)
Create a .env file in your project directory for easier configuration:
# Required: Path to your uber-apk-signer tool
UBER_APK_SIGNER_PATH=/path/to/uber-apk-signer
# Optional: Uber APK Signer settings
UBER_APK_SIGNER_TIMEOUT=300000 # 5 minutes timeout
UBER_APK_SIGNER_LOG_LEVEL=info # debug, info, warn, error
# Optional: Server settings
MCP_SERVER_NAME=uber-apk-signer-mcp # Server name
MCP_SERVER_VERSION=1.0.0 # Server version
MCP_TRANSPORT=stdio # stdio or tcp
# Optional: Security settings
MCP_ALLOW_INSECURE=false # Allow insecure connections
MCP_MAX_FILE_SIZE=104857600 # Max file size (100MB)Note: The .env file is automatically ignored by Git to keep your personal paths private.
Uber APK Signer Path
Make sure the Uber APK Signer tool is accessible. You can either:
Add it to your system PATH, or
Set the
UBER_APK_SIGNER_PATHenvironment variable to the full path
Usage
Starting the Server
Stdio Transport (Default)
npm startTCP Transport
npm start -- --port 3000 --host localhostAvailable Tools
The MCP server provides the following tools:
1. Sign APK (sign_apk)
Sign an APK file using a keystore. Only apkPath is required - other parameters use smart defaults.
Parameters:
apkPath(required): Path to the APK file to signkeystorePath(optional): Path to the keystore file (defaults to~/.android/debug.keystore)keystorePassword(optional): Password for the keystore (defaults toandroid)keyAlias(optional): Alias of the key to use for signing (defaults toandroiddebugkey)keyPassword(optional): Password for the key (defaults toandroid)outputPath(optional): Output path for the signed APK (auto-generated if not provided)
Examples:
Simple signing (development/testing):
{
"apkPath": "./app.apk"
}Production signing with custom keystore:
{
"apkPath": "./release.apk",
"keystorePath": "~/keys/release.keystore",
"keystorePassword": "mysecret",
"keyAlias": "release-key",
"keyPassword": "mysecret"
}Chat usage:
"Can you sign my app.apk file?" (uses debug keystore defaults)
"Sign my release.apk with my production keystore" (asks for keystore details)
2. Verify APK Signature (verify_apk_signature)
Verify the signature of an APK file.
Parameters:
apkPath(required): Path to the APK file to verify
Example:
{
"apkPath": "/path/to/app.apk"
}3. List Keystores (list_keystores)
List available keystores in a directory.
Parameters:
directory(optional): Directory to search for keystores (default: current directory)
Example:
{
"directory": "/path/to/keystores"
}4. Create Keystore (create_keystore)
Create a new keystore for APK signing.
Parameters:
keystorePath(required): Path where to create the keystorekeystorePassword(required): Password for the keystorekeyAlias(required): Alias for the keykeyPassword(required): Password for the keycommonName(optional): Common name for the certificateorganization(optional): Organization name
Example:
{
"keystorePath": "/path/to/new-keystore.jks",
"keystorePassword": "newpass123",
"keyAlias": "release",
"keyPassword": "newkey123",
"commonName": "My App",
"organization": "My Company"
}Integration with Chat LLMs
MCP Client Configuration
The server supports stdio transport and can be integrated with any MCP-compatible client. Here are configuration examples for popular clients:
Claude Desktop
{
"mcpServers": {
"uber-apk-signer": {
"command": "node",
"args": ["/path/to/uber-apk-signer-mcp/dist/index.js"],
"cwd": "/path/to/uber-apk-signer-mcp"
}
}
}Ollama
# In your Ollama configuration
mcp_servers:
uber-apk-signer:
command: node
args: ["/path/to/uber-apk-signer-mcp/dist/index.js"]
cwd: "/path/to/uber-apk-signer-mcp"Custom MCP Client
import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { StdioClientTransport } from '@modelcontextprotocol/sdk/client/stdio.js';
const client = new Client({
name: 'my-client',
version: '1.0.0',
});
const transport = new StdioClientTransport({
command: 'node',
args: ['/path/to/uber-apk-signer-mcp/dist/index.js'],
cwd: '/path/to/uber-apk-signer-mcp',
});
await client.connect(transport);Generic Configuration
Most MCP clients use a similar configuration structure:
{
"mcpServers": {
"uber-apk-signer": {
"command": "node",
"args": ["/path/to/uber-apk-signer-mcp/dist/index.js"],
"cwd": "/path/to/uber-apk-signer-mcp"
}
}
}Note: Replace /path/to/uber-apk-signer-mcp with the actual path to your installation directory.
Development
Project Structure
src/
├── index.ts # Main server entry point
├── tools/
│ └── apk-signer-tools.ts # MCP tool implementations
├── services/
│ └── apk-signer.ts # APK signing service
└── config/
└── config.ts # Configuration managementBuilding
npm run buildDevelopment Mode
npm run devTesting
npm testTroubleshooting
Common Issues
"Uber APK Signer not found"
Ensure the tool is installed and accessible
Check the
UBER_APK_SIGNER_PATHenvironment variableVerify the tool works from command line
"Permission denied"
Check file permissions for APK and keystore files
Ensure the server has read/write access to the working directory
"Keystore password incorrect"
Verify the keystore password and key password
Check if the keystore file is corrupted
"APK file not found"
Verify the APK file path is correct
Ensure the file exists and is readable
Debug Mode
Enable debug logging by setting:
export UBER_APK_SIGNER_LOG_LEVEL=debugSecurity Considerations
Keystore Security: Keep your keystore files and passwords secure
File Access: The server needs access to APK and keystore files
Network Security: When using TCP transport, consider firewall rules
Input Validation: All inputs are validated before processing
Contributing
Fork the repository
Create a feature branch
Make your changes
Add tests if applicable
Submit a pull request
License
MIT License - see LICENSE file for details.
Support
For issues and questions:
Check the troubleshooting section
Review the logs with debug mode enabled
Open an issue on GitHub
Contact your internal team for Uber APK Signer specific issues
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
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/OdellMoreno/uber-apk-signer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server