LICENSE
MANIFEST.in
README.md
pyproject.toml
src/mcpstore/__init__.py
src/mcpstore/adapters/__init__.py
src/mcpstore/adapters/langchain_adapter.py
src/mcpstore/cli/__init__.py
src/mcpstore/cli/config_manager.py
src/mcpstore/cli/main.py
src/mcpstore/config/__init__.py
src/mcpstore/config/config.py
src/mcpstore/config/json_config.py
src/mcpstore/core/__init__.py
src/mcpstore/core/agent_service_mapper.py
src/mcpstore/core/cache_performance.py
src/mcpstore/core/client_manager.py
src/mcpstore/core/component_control.py
src/mcpstore/core/fastmcp_integration.py
src/mcpstore/core/orchestrator.py
src/mcpstore/core/session_manager.py
src/mcpstore/core/tool_transformation.py
src/mcpstore/core/auth/__init__.py
src/mcpstore/core/auth/builder.py
src/mcpstore/core/auth/manager.py
src/mcpstore/core/auth/types.py
src/mcpstore/core/configuration/__init__.py
src/mcpstore/core/configuration/config_processor.py
src/mcpstore/core/configuration/config_processor_enhanced.py
src/mcpstore/core/configuration/standalone_config.py
src/mcpstore/core/configuration/unified_config.py
src/mcpstore/core/context/__init__.py
src/mcpstore/core/context/advanced_features.py
src/mcpstore/core/context/agent_statistics.py
src/mcpstore/core/context/base_context.py
src/mcpstore/core/context/resources_prompts.py
src/mcpstore/core/context/service_management.py
src/mcpstore/core/context/service_operations.py
src/mcpstore/core/context/service_proxy.py
src/mcpstore/core/context/tool_operations.py
src/mcpstore/core/context/types.py
src/mcpstore/core/hub/__init__.py
src/mcpstore/core/hub/builder.py
src/mcpstore/core/hub/package.py
src/mcpstore/core/hub/process.py
src/mcpstore/core/hub/server.py
src/mcpstore/core/hub/types.py
src/mcpstore/core/integration/__init__.py
src/mcpstore/core/integration/fastmcp_integration.py
src/mcpstore/core/integration/local_service_adapter.py
src/mcpstore/core/integration/openapi_integration.py
src/mcpstore/core/integration/transport.py
src/mcpstore/core/lifecycle/__init__.py
src/mcpstore/core/lifecycle/config.py
src/mcpstore/core/lifecycle/content_manager.py
src/mcpstore/core/lifecycle/event_processor.py
src/mcpstore/core/lifecycle/health_bridge.py
src/mcpstore/core/lifecycle/health_manager.py
src/mcpstore/core/lifecycle/initializing_processor.py
src/mcpstore/core/lifecycle/manager.py
src/mcpstore/core/lifecycle/smart_reconnection.py
src/mcpstore/core/lifecycle/state_machine.py
src/mcpstore/core/lifecycle/unified_state_manager.py
src/mcpstore/core/market/__init__.py
src/mcpstore/core/market/converter.py
src/mcpstore/core/market/manager.py
src/mcpstore/core/market/service.py
src/mcpstore/core/market/types.py
src/mcpstore/core/models/__init__.py
src/mcpstore/core/models/agent.py
src/mcpstore/core/models/client.py
src/mcpstore/core/models/common.py
src/mcpstore/core/models/service.py
src/mcpstore/core/models/tool.py
src/mcpstore/core/monitoring/__init__.py
src/mcpstore/core/monitoring/analytics.py
src/mcpstore/core/monitoring/base_monitor.py
src/mcpstore/core/monitoring/config.py
src/mcpstore/core/monitoring/message_handler.py
src/mcpstore/core/monitoring/tools_monitor.py
src/mcpstore/core/orchestrator/__init__.py
src/mcpstore/core/orchestrator/base_orchestrator.py
src/mcpstore/core/orchestrator/health_monitoring.py
src/mcpstore/core/orchestrator/monitoring_tasks.py
src/mcpstore/core/orchestrator/network_utils.py
src/mcpstore/core/orchestrator/resources_prompts.py
src/mcpstore/core/orchestrator/service_connection.py
src/mcpstore/core/orchestrator/service_management.py
src/mcpstore/core/orchestrator/standalone_config.py
src/mcpstore/core/orchestrator/tool_execution.py
src/mcpstore/core/orchestrator/types.py
src/mcpstore/core/parsers/__init__.py
src/mcpstore/core/parsers/agent_service_parser.py
src/mcpstore/core/registry/__init__.py
src/mcpstore/core/registry/cache_manager.py
src/mcpstore/core/registry/core_registry.py
src/mcpstore/core/registry/smart_query.py
src/mcpstore/core/registry/tool_resolver.py
src/mcpstore/core/registry/types.py
src/mcpstore/core/store/__init__.py
src/mcpstore/core/store/api_server.py
src/mcpstore/core/store/base_store.py
src/mcpstore/core/store/config_management.py
src/mcpstore/core/store/context_factory.py
src/mcpstore/core/store/data_space_manager.py
src/mcpstore/core/store/service_query.py
src/mcpstore/core/store/setup_manager.py
src/mcpstore/core/store/setup_mixin.py
src/mcpstore/core/store/tool_operations.py
src/mcpstore/core/sync/__init__.py
src/mcpstore/core/sync/bidirectional_sync_manager.py
src/mcpstore/core/sync/shared_client_state_sync.py
src/mcpstore/core/sync/unified_sync_manager.py
src/mcpstore/core/utils/__init__.py
src/mcpstore/core/utils/async_sync_helper.py
src/mcpstore/core/utils/exceptions.py
src/mcpstore/core/utils/id_generator.py
src/mcpstore/data/mcp.json
src/mcpstore/data/defaults/agent_clients.json
src/mcpstore/data/defaults/client_services.json
src/mcpstore/data/market/servers.json
src/mcpstore/data/monitoring/tool_records.json
src/mcpstore/scripts/__init__.py
src/mcpstore/scripts/api.py
src/mcpstore/scripts/api_agent.py
src/mcpstore/scripts/api_app.py
src/mcpstore/scripts/api_concurrency.py
src/mcpstore/scripts/api_data_space.py
src/mcpstore/scripts/api_decorators.py
src/mcpstore/scripts/api_dependencies.py
src/mcpstore/scripts/api_exceptions.py
src/mcpstore/scripts/api_langchain.py
src/mcpstore/scripts/api_models.py
src/mcpstore/scripts/api_monitoring.py
src/mcpstore/scripts/api_service_utils.py
src/mcpstore/scripts/api_store.py
src/mcpstore/scripts/app.py
src/mcpstore/scripts/deps.py
src/mcpstore/scripts/market_refresh.py