MCP Servers
Model Context Protocol servers available for DOIL agent orchestration
4 Active
9 Configured
Total Servers
13
MCP servers configured
Active Connections
4
Currently active
Business APIs
3
TMF standards
RAN Infrastructure
10
Network & planning
Business MCPs
3 servers
TMF620 Product Catalog
active
TM Forum product catalog management with full CRUD operations for telecom products and services
API Endpoints
tmf-unified-service.onrender.com/tmf620
Available Tools
get_products
create_product
update_product
search_catalog
Resources
product_schemas
catalog_metadata
pricing_models
TMF658 Loyalty Management
active
Customer loyalty program management including points, rewards, and tier management
API Endpoints
tmf-unified-service.onrender.com/tmf658
Available Tools
get_loyalty_data
update_points
manage_rewards
tier_analysis
Resources
customer_profiles
reward_catalog
loyalty_metrics
TMF717 Customer 360
active
Comprehensive customer view with 360-degree insights, interactions, and behavior analytics
API Endpoints
tmf-unified-service.onrender.com/tmf717
Available Tools
get_customer_insights
interaction_history
behavior_analysis
churn_prediction
Resources
customer_data
interaction_logs
analytics_reports
Infrastructure MCPs
6 servers
Coverage Analysis
active
RAN network coverage analysis with signal strength, quality metrics, and optimization recommendations
Available Tools
analyze_coverage
get_coverage_metrics
signal_optimization
interference_analysis
Resources
coverage_maps
signal_data
optimization_reports
Cell Tower Management
configured
Cell tower data management including locations, configurations, and performance monitoring
Available Tools
get_tower_data
update_configuration
performance_monitoring
maintenance_scheduling
Resources
tower_inventory
configuration_templates
performance_logs
RAN Project Management
configured
RAN deployment project coordination with timeline management and resource allocation
Available Tools
create_project
manage_timeline
resource_allocation
progress_tracking
Resources
project_templates
resource_catalogs
timeline_data
Project Planning
configured
Comprehensive project planning with Gantt charts, resource management, and milestone tracking
Available Tools
create_project_plan
manage_milestones
resource_planning
timeline_optimization
Resources
project_templates
milestone_definitions
resource_pools
Documentation & Guides
configured
Technical documentation, guides, and knowledge base management for operational procedures
Available Tools
search_documentation
create_guides
update_procedures
knowledge_extraction
Resources
technical_docs
procedure_guides
knowledge_base
Compartment Modeling
configured
Mathematical compartment modeling for network traffic, capacity planning, and system analysis
Available Tools
create_model
run_simulation
analyze_results
optimize_parameters
Resources
model_templates
simulation_data
analysis_reports
Geospatial MCPs
4 servers
Geospatial Population Analysis
configured
Population density analysis with demographic data for network planning and optimization
Available Tools
get_population_density
demographic_analysis
traffic_modeling
demand_forecasting
Resources
census_data
demographic_maps
traffic_patterns
Satellite Imagery Processing
configured
Satellite image processing for site analysis, terrain mapping, and geographical intelligence
Available Tools
process_imagery
terrain_analysis
land_classification
change_detection
Resources
satellite_data
terrain_models
classification_maps
Points of Interest
configured
Points of Interest management for location-based services and network planning context
Available Tools
get_nearby_pois
categorize_locations
traffic_analysis
commercial_insights
Resources
poi_database
category_mappings
traffic_data
Site Survey Data
configured
Site survey data collection and analysis for network deployment planning and optimization
Available Tools
collect_survey_data
site_analysis
feasibility_assessment
environmental_factors
Resources
survey_reports
site_photos
measurement_data
Integration Example
How to use these MCP servers in your DOIL agents
agent NetworkOptimizationAI
intent 'Optimize RAN coverage using real data'
# Bind to active MCP servers
mcp_binding :coverage_data, 'coverage-mcp' do
tools [:analyze_coverage, :get_coverage_metrics]
resources [:coverage_maps, :signal_data]
end
mcp_binding :population, 'geospatial-population-density' do
tools [:get_population_density, :traffic_modeling]
resources [:census_data, :demographic_maps]
end
# Orchestrate AI agents with MCP data
orchestrate :claude_code do
context 'Network optimization specialist'
tools [mcp_binding(:coverage_data), mcp_binding(:population)]
workflow 'analyze → optimize → recommend'
end
end