claudepod 1.0.1 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,71 @@
1
+ # SearXNG MCP Enhanced - Environment Variables Template
2
+ # These variables override values in ods_config.json when set
3
+ # Configuration Priority: Script defaults → JSON file → Environment variables (highest)
4
+
5
+ # ============================================================================
6
+ # Core Configuration
7
+ # ============================================================================
8
+
9
+ # SearXNG Instance Configuration
10
+ SEARXNG_ENGINE_API_BASE_URL=http://localhost:8080/search
11
+
12
+ # Timezone Configuration
13
+ DESIRED_TIMEZONE=UTC
14
+
15
+ # Configuration Management
16
+ ODS_CONFIG_PATH=/home/node/.claude/ods_config.json
17
+
18
+ # ============================================================================
19
+ # Search & Scraping Settings
20
+ # ============================================================================
21
+
22
+ # Number of web pages to scrape for content extraction
23
+ RETURNED_SCRAPPED_PAGES_NO=3
24
+
25
+ # Maximum number of search results to return
26
+ MAX_SEARCH_RESULTS=10
27
+
28
+ # Timeout settings (in seconds)
29
+ SCRAPING_TIMEOUT_SECONDS=30
30
+ SEARCH_TIMEOUT_SECONDS=15
31
+
32
+ # Default search categories (comma-separated)
33
+ # Available: general,images,videos,files,map,social media
34
+ DEFAULT_SEARCH_CATEGORIES=general
35
+
36
+ # Language settings
37
+ SEARCH_LANGUAGE=en-US
38
+ FALLBACK_LANGUAGE=en
39
+
40
+ # ============================================================================
41
+ # Performance & Caching
42
+ # ============================================================================
43
+
44
+ # Cache settings
45
+ CACHE_MAXSIZE=1000
46
+
47
+ # Rate limiting (requests per minute)
48
+ RATE_LIMIT_REQUESTS_PER_MINUTE=60
49
+
50
+ # User agent for web requests
51
+ USER_AGENT=ClaudePod/1.0 MCP-SearXNG-Enhanced
52
+
53
+ # ============================================================================
54
+ # Feature Toggles
55
+ # ============================================================================
56
+
57
+ # Enable/disable content scraping
58
+ ENABLE_CONTENT_SCRAPING=true
59
+
60
+ # Enable/disable PDF reading capabilities
61
+ ENABLE_PDF_READING=true
62
+
63
+ # ============================================================================
64
+ # Debug & Development
65
+ # ============================================================================
66
+
67
+ # Enable debug logging (optional)
68
+ # SEARXNG_DEBUG=false
69
+
70
+ # Custom SearXNG instance for testing (optional)
71
+ # CUSTOM_SEARXNG_URL=http://localhost:8080/search
@@ -0,0 +1,72 @@
1
+ gui_log_window: False
2
+ # whether to open a graphical window with Serena's logs.
3
+ # This is mainly supported on Windows and (partly) on Linux; not available on macOS.
4
+ # If you want to see the logs in a web browser, use the `web_dashboard` option instead.
5
+ # Limitations: doesn't seem to work with the community version of Claude Desktop for Linux
6
+ # Might also cause problems with some MCP clients - if you have any issues, try disabling this
7
+
8
+ # Being able to inspect logs is useful both for troubleshooting and for monitoring the tool calls,
9
+ # especially when using the agno playground, since the tool calls are not always shown,
10
+ # and the input params are never shown in the agno UI.
11
+ # When used as MCP server for Claude Desktop, the logs are primarily for troubleshooting.
12
+ # Note: unfortunately, the various entities starting the Serena server or agent do so in
13
+ # mysterious ways, often starting multiple instances of the process without shutting down
14
+ # previous instances. This can lead to multiple log windows being opened, and only the last
15
+ # window being updated. Since we can't control how agno or Claude Desktop start Serena,
16
+ # we have to live with this limitation for now.
17
+
18
+ web_dashboard: False
19
+ # whether to open the Serena web dashboard (which will be accessible through your web browser) that
20
+ # shows Serena's current session logs - as an alternative to the GUI log window which
21
+ # is supported on all platforms.
22
+
23
+ web_dashboard_open_on_launch: False
24
+ # whether to open a browser window with the web dashboard when Serena starts (provided that web_dashboard
25
+ # is enabled). If set to False, you can still open the dashboard manually by navigating to
26
+ # http://localhost:24282/dashboard/ in your web browser (24282 = 0x5EDA, SErena DAshboard).
27
+ # If you have multiple instances running, a higher port will be used; try port 24283, 24284, etc.
28
+
29
+ log_level: 20
30
+ # the minimum log level for the GUI log window and the dashboard (10 = debug, 20 = info, 30 = warning, 40 = error)
31
+
32
+ trace_lsp_communication: False
33
+ # whether to trace the communication between Serena and the language servers.
34
+ # This is useful for debugging language server issues.
35
+
36
+ tool_timeout: 240
37
+ # timeout, in seconds, after which tool executions are terminated
38
+
39
+ excluded_tools: []
40
+ # list of tools to be globally excluded
41
+
42
+ included_optional_tools: []
43
+ # list of optional tools (which are disabled by default) to be included
44
+
45
+ jetbrains: False
46
+ # whether to enable JetBrains mode and use tools based on the Serena JetBrains IDE plugin
47
+ # instead of language server-based tools
48
+ # NOTE: The plugin is yet unreleased. This is for Serena developers only.
49
+
50
+
51
+ record_tool_usage_stats: False
52
+ # whether to record tool usage statistics, they will be shown in the web dashboard if recording is active.
53
+
54
+ token_count_estimator: TIKTOKEN_GPT4O
55
+ # Only relevant if `record_tool_usage` is True; the name of the token count estimator to use for tool usage statistics.
56
+ # See the `RegisteredTokenCountEstimator` enum for available options.
57
+ #
58
+ # Note: some token estimators (like tiktoken) may require downloading data files
59
+ # on the first run, which can take some time and require internet access. Others, like the Anthropic ones, may require an API key
60
+ # and rate limits may apply.
61
+
62
+
63
+ # MANAGED BY SERENA, KEEP AT THE BOTTOM OF THE YAML AND DON'T EDIT WITHOUT NEED
64
+ # The list of registered projects.
65
+ # To add a project, within a chat, simply ask Serena to "activate the project /path/to/project" or,
66
+ # if the project was previously added, "activate the project <project name>".
67
+ # By default, the project's name will be the name of the directory containing the project, but you may change it
68
+ # by editing the (auto-generated) project configuration file `/path/project/project/.serena/project.yml` file.
69
+ # If you want to maintain full control of the project configuration, create the project.yml file manually and then
70
+ # instruct Serena to activate the project by its path for first-time activation.
71
+ # NOTE: Make sure there are no name collisions in the names of registered projects.
72
+ projects: []
@@ -0,0 +1,37 @@
1
+ {
2
+ "models": {
3
+ "main": {
4
+ "provider": "claude-code",
5
+ "modelId": "sonnet",
6
+ "maxTokens": 64000,
7
+ "temperature": 0.2
8
+ },
9
+ "research": {
10
+ "provider": "claude-code",
11
+ "modelId": "sonnet",
12
+ "maxTokens": 64000,
13
+ "temperature": 0.1
14
+ },
15
+ "fallback": {
16
+ "provider": "claude-code",
17
+ "modelId": "sonnet",
18
+ "maxTokens": 64000,
19
+ "temperature": 0.2
20
+ }
21
+ },
22
+ "global": {
23
+ "logLevel": "info",
24
+ "debug": false,
25
+ "defaultNumTasks": 10,
26
+ "defaultSubtasks": 5,
27
+ "defaultPriority": "medium",
28
+ "projectName": "ClaudePod Project",
29
+ "ollamaBaseURL": "http://localhost:11434/api",
30
+ "bedrockBaseURL": "https://bedrock.us-east-1.amazonaws.com",
31
+ "responseLanguage": "English",
32
+ "defaultTag": "master",
33
+ "azureOpenaiBaseURL": "https://your-endpoint.openai.azure.com/",
34
+ "userId": "1234567890"
35
+ },
36
+ "claudeCode": {}
37
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "SEARXNG_ENGINE_API_BASE_URL": "http://host.docker.internal:8080/search",
3
+ "IGNORED_WEBSITES": "",
4
+ "RETURNED_SCRAPPED_PAGES_NO": 3,
5
+ "SCRAPPED_PAGES_NO": 5,
6
+ "PAGE_CONTENT_WORDS_LIMIT": 5000,
7
+ "CITATION_LINKS": true,
8
+ "desired_timezone": "America/New_York",
9
+ "TRAFILATURA_TIMEOUT": 15,
10
+ "MAX_IMAGE_RESULTS": 10,
11
+ "MAX_VIDEO_RESULTS": 10,
12
+ "MAX_FILE_RESULTS": 5,
13
+ "MAX_MAP_RESULTS": 5,
14
+ "MAX_SOCIAL_RESULTS": 5,
15
+ "SCRAPING_TIMEOUT": 20,
16
+ "CACHE_MAXSIZE": 100,
17
+ "CACHE_TTL_MINUTES": 5,
18
+ "RATE_LIMIT_REQUESTS_PER_MINUTE": 10,
19
+ "RATE_LIMIT_TIMEOUT_SECONDS": 60,
20
+ "CACHE_MAX_AGE_MINUTES": 30
21
+ }