GPP
- typescript
12
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"edhijlu-3gpp-mcp-server": {
"command": "npx",
"args": [
"3gpp-mcp-charging@latest",
"serve"
],
"env": {
"HUGGINGFACE_TOKEN": "optional-for-enhanced-access"
}
}
}
}You connect your AI assistant to live 3GPP specification data through a lightweight MCP server that bridges to external data sources. This enables agent-ready, real-time access to current specifications and implementation guidance, with fast responses and structured outputs for your workflows.
How to use
To use this MCP server, first configure your MCP client to point at the server endpoint you run locally or remotely. The server exposes tools that let your AI agent search, retrieve details, compare specifications, and extract implementation requirements from the 3GPP specification dataset. Use your agent to issue queries like finding charging procedures, pulling full specification details by ID, or comparing evolution across releases. The responses are structured JSON excerpts with relevance scores and embedded metadata to help your agent reason about dependencies, testing guidance, and compliance notes.
How to install
Prerequisites you need before installing:
-
Node.js 18+ (download from the official Node.js site)
-
An MCP-compatible AI assistant (for example Claude Desktop, VS Code integration, Cursor, or similar)
-
Internet access for external API calls
Direct MCP configuration (recommended)
{
"mcpServers": {
"3gpp-server": {
"command": "npx",
"args": ["3gpp-mcp-charging@latest", "serve"],
"description": "3GPP MCP Server - Direct access to TSpec-LLM and 3GPP specifications",
"env": {
"HUGGINGFACE_TOKEN": "optional-for-enhanced-access"
}
}
}
}
Alternative: Auto-Configuration
You can initialize the MCP setup with a single command, then follow prompts to tailor the setup for your client.
npx 3gpp-mcp-charging@latest init
Test it works
Ask your AI assistant to run a test query such as: Find 5G CHF implementation requirements in TS 32.290. You should receive structured specification content with implementation guidance, dependencies, and testing considerations.
Available tools
search_specifications
Direct TSpec-LLM search that returns structured spec results plus relevance scores
get_specification_details
Comprehensive specification details by specification ID including metadata and guidance
compare_specifications
Multi-specification comparison generating a migration analysis and timeline
find_implementation_requirements
Extract technical requirements, dependencies, testing guidance, and compliance notes from specifications