Uber APK Signer MCP Server
An MCP server that enables signing, verifying, and managing APK files and keystores through a chat interface using the Uber APK Signer tool.
README
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
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-mcp
- Install dependencies:
npm install
- Build the project:
npm run build
Configuration
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=104857600
Using 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 start
TCP Transport
npm start -- --port 3000 --host localhost
Available 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 management
Building
npm run build
Development Mode
npm run dev
Testing
npm test
Troubleshooting
Common Issues
-
"Uber APK Signer not found"
- Ensure the tool is installed and accessible
- Check the
UBER_APK_SIGNER_PATHenvironment variable - Verify 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=debug
Security 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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.