LICENSE
MANIFEST.in
README.md
pyproject.toml
src/mcpstore/__init__.py
src/mcpstore/adapters/__init__.py
src/mcpstore/adapters/autogen_adapter.py
src/mcpstore/adapters/common.py
src/mcpstore/adapters/crewai_adapter.py
src/mcpstore/adapters/langchain_adapter.py
src/mcpstore/adapters/langgraph_adapter.py
src/mcpstore/adapters/llamaindex_adapter.py
src/mcpstore/adapters/openai_adapter.py
src/mcpstore/adapters/semantic_kernel_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/cache_config.py
src/mcpstore/config/cache_environment.py
src/mcpstore/config/config.py
src/mcpstore/config/config_dataclasses.py
src/mcpstore/config/config_defaults.py
src/mcpstore/config/health_check.py
src/mcpstore/config/json_config.py
src/mcpstore/config/path_utils.py
src/mcpstore/config/redis_errors.py
src/mcpstore/config/toml_config.py
src/mcpstore/core/__init__.py
src/mcpstore/core/dependency_injection.py
src/mcpstore/core/exceptions.py
src/mcpstore/core/orchestrator.py
src/mcpstore/core/agents/__init__.py
src/mcpstore/core/agents/session_manager.py
src/mcpstore/core/application/__init__.py
src/mcpstore/core/application/service_application_service.py
src/mcpstore/core/architecture/__init__.py
src/mcpstore/core/architecture/service_management_core.py
src/mcpstore/core/architecture/service_management_shells.py
src/mcpstore/core/architecture/show_config_core.py
src/mcpstore/core/architecture/show_config_shell.py
src/mcpstore/core/bridge/__init__.py
src/mcpstore/core/bridge/async_orchestrated_bridge.py
src/mcpstore/core/cache/__init__.py
src/mcpstore/core/cache/cache_layer_manager.py
src/mcpstore/core/cache/models.py
src/mcpstore/core/cache/naming_service.py
src/mcpstore/core/cache/relationship_manager.py
src/mcpstore/core/cache/service_entity_manager.py
src/mcpstore/core/cache/state_manager.py
src/mcpstore/core/cache/tool_entity_manager.py
src/mcpstore/core/concurrency/__init__.py
src/mcpstore/core/concurrency/locks.py
src/mcpstore/core/configuration/__init__.py
src/mcpstore/core/configuration/config_export_service.py
src/mcpstore/core/configuration/config_processor.py
src/mcpstore/core/configuration/config_processor_enhanced.py
src/mcpstore/core/configuration/config_service.py
src/mcpstore/core/configuration/config_snapshot.py
src/mcpstore/core/configuration/config_snapshot_generator.py
src/mcpstore/core/configuration/config_write_service.py
src/mcpstore/core/configuration/event_driven_config.py
src/mcpstore/core/configuration/interfaces.py
src/mcpstore/core/configuration/plugin_architecture.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_proxy.py
src/mcpstore/core/context/agent_service_mapper.py
src/mcpstore/core/context/agent_statistics.py
src/mcpstore/core/context/async_safe_service_management.py
src/mcpstore/core/context/base_context.py
src/mcpstore/core/context/cache_proxy.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/session.py
src/mcpstore/core/context/session_management.py
src/mcpstore/core/context/store_proxy.py
src/mcpstore/core/context/tool_operations.py
src/mcpstore/core/context/tool_proxy.py
src/mcpstore/core/context/tool_transformation.py
src/mcpstore/core/context/types.py
src/mcpstore/core/context/internal/context_kernel.py
src/mcpstore/core/domain/__init__.py
src/mcpstore/core/domain/cache_manager.py
src/mcpstore/core/domain/connection_manager.py
src/mcpstore/core/domain/health_monitor.py
src/mcpstore/core/domain/lifecycle_manager.py
src/mcpstore/core/domain/persistence_manager.py
src/mcpstore/core/domain/reconnection_scheduler.py
src/mcpstore/core/events/__init__.py
src/mcpstore/core/events/event_bus.py
src/mcpstore/core/events/service_events.py
src/mcpstore/core/hub/__init__.py
src/mcpstore/core/hub/exceptions.py
src/mcpstore/core/hub/server.py
src/mcpstore/core/hub/types.py
src/mcpstore/core/infrastructure/__init__.py
src/mcpstore/core/infrastructure/container.py
src/mcpstore/core/integration/__init__.py
src/mcpstore/core/integration/deadlock_fix_integration.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/state_machine.py
src/mcpstore/core/logic/__init__.py
src/mcpstore/core/logic/tool_logic.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/error_codes.py
src/mcpstore/core/models/response.py
src/mcpstore/core/models/response_builder.py
src/mcpstore/core/models/response_decorators.py
src/mcpstore/core/models/service.py
src/mcpstore/core/models/tool.py
src/mcpstore/core/models/tool_result.py
src/mcpstore/core/models/tool_set.py
src/mcpstore/core/orchestrator/__init__.py
src/mcpstore/core/orchestrator/base_orchestrator.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/performance/__init__.py
src/mcpstore/core/performance/cache.py
src/mcpstore/core/performance/discovery_cache.py
src/mcpstore/core/performance/prefetch.py
src/mcpstore/core/registry/__init__.py
src/mcpstore/core/registry/agent_locks.py
src/mcpstore/core/registry/atomic.py
src/mcpstore/core/registry/cache_manager.py
src/mcpstore/core/registry/config_sync_manager.py
src/mcpstore/core/registry/delegation_generator.py
src/mcpstore/core/registry/elegant_registry.py
src/mcpstore/core/registry/exception_mapper.py
src/mcpstore/core/registry/key_builder.py
src/mcpstore/core/registry/kv_storage_adapter.py
src/mcpstore/core/registry/kv_store_factory.py
src/mcpstore/core/registry/normalizer.py
src/mcpstore/core/registry/redis_atomic.py
src/mcpstore/core/registry/redis_config.py
src/mcpstore/core/registry/redis_health.py
src/mcpstore/core/registry/registry_factory.py
src/mcpstore/core/registry/repository.py
src/mcpstore/core/registry/schema_manager.py
src/mcpstore/core/registry/scope_resolver.py
src/mcpstore/core/registry/smart_query.py
src/mcpstore/core/registry/state_backend.py
src/mcpstore/core/registry/tool_resolver.py
src/mcpstore/core/registry/types.py
src/mcpstore/core/registry/wrapper_config.py
src/mcpstore/core/registry/core_registry/__init__.py
src/mcpstore/core/registry/core_registry/base.py
src/mcpstore/core/registry/core_registry/cache_manager.py
src/mcpstore/core/registry/core_registry/errors.py
src/mcpstore/core/registry/core_registry/main_registry.py
src/mcpstore/core/registry/core_registry/mapping_manager.py
src/mcpstore/core/registry/core_registry/persistence.py
src/mcpstore/core/registry/core_registry/service_manager.py
src/mcpstore/core/registry/core_registry/session_manager.py
src/mcpstore/core/registry/core_registry/state_manager.py
src/mcpstore/core/registry/core_registry/tool_manager.py
src/mcpstore/core/registry/core_registry/utils.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/client_manager.py
src/mcpstore/core/store/composed_store.py
src/mcpstore/core/store/config_export_mixin.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/deadlock_safe_async_helper.py
src/mcpstore/core/utils/id_generator.py
src/mcpstore/core/utils/mcp_client_helpers.py
src/mcpstore/core/utils/sync_api.py
src/mcpstore/extensions/__init__.py
src/mcpstore/extensions/monitoring/__init__.py
src/mcpstore/extensions/monitoring/analytics.py
src/mcpstore/extensions/monitoring/base_monitor.py
src/mcpstore/extensions/monitoring/config.py
src/mcpstore/extensions/monitoring/message_handler.py
src/mcpstore/extensions/monitoring/tools_monitor.py
src/mcpstore/models/__init__.py
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_cache.py
src/mcpstore/scripts/api_concurrency.py
src/mcpstore/scripts/api_decorators.py
src/mcpstore/scripts/api_dependencies.py
src/mcpstore/scripts/api_exceptions.py
src/mcpstore/scripts/api_models.py
src/mcpstore/scripts/api_service_utils.py
src/mcpstore/scripts/api_store.py
src/mcpstore/scripts/app.py
src/mcpstore/utils/watchdog/__init__.py
src/mcpstore/utils/watchdog/events.py
src/mcpstore/utils/watchdog/py.typed
src/mcpstore/utils/watchdog/version.py
src/mcpstore/utils/watchdog/watchmedo.py
src/mcpstore/utils/watchdog/observers/__init__.py
src/mcpstore/utils/watchdog/observers/api.py
src/mcpstore/utils/watchdog/observers/fsevents.py
src/mcpstore/utils/watchdog/observers/inotify.py
src/mcpstore/utils/watchdog/observers/inotify_c.py
src/mcpstore/utils/watchdog/observers/inotify_move_event_grouper.py
src/mcpstore/utils/watchdog/observers/kqueue.py
src/mcpstore/utils/watchdog/observers/polling.py
src/mcpstore/utils/watchdog/observers/read_directory_changes.py
src/mcpstore/utils/watchdog/observers/winapi.py
src/mcpstore/utils/watchdog/tricks/__init__.py
src/mcpstore/utils/watchdog/utils/__init__.py
src/mcpstore/utils/watchdog/utils/backwards_compat.py
src/mcpstore/utils/watchdog/utils/bricks.py
src/mcpstore/utils/watchdog/utils/delayed_queue.py
src/mcpstore/utils/watchdog/utils/dirsnapshot.py
src/mcpstore/utils/watchdog/utils/echo.py
src/mcpstore/utils/watchdog/utils/event_debouncer.py
src/mcpstore/utils/watchdog/utils/patterns.py
src/mcpstore/utils/watchdog/utils/platform.py
src/mcpstore/utils/watchdog/utils/process_watcher.py