{ "server_info": { "name": "mcp-server-aws", "description": "A Model Context Protocol (MCP) server providing AWS tools and resources.", "repo_url": "https://github.com/rishikavikondala/mcp-server-aws", "server_type": "Community Servers", "server_category": "Cloud Service, Development", "server_version": "0.1.0" }, "tools": [ { "name": "s3_bucket_create", "description": "Create a new S3 bucket", "input_schema": { "type": "object", "properties": { "bucket_name": { "type": "string", "description": "Name of the S3 bucket to create" } }, "required": [ "bucket_name" ] } }, { "name": "s3_bucket_list", "description": "List all S3 buckets", "input_schema": { "type": "object", "properties": {} } }, { "name": "s3_bucket_delete", "description": "Delete an S3 bucket", "input_schema": { "type": "object", "properties": { "bucket_name": { "type": "string", "description": "Name of the S3 bucket to delete" } }, "required": [ "bucket_name" ] } }, { "name": "s3_object_upload", "description": "Upload an object to S3", "input_schema": { "type": "object", "properties": { "bucket_name": { "type": "string", "description": "Name of the S3 bucket" }, "object_key": { "type": "string", "description": "Key/path of the object in the bucket" }, "file_content": { "type": "string", "description": "Base64 encoded file content for upload" } }, "required": [ "bucket_name", "object_key", "file_content" ] } }, { "name": "s3_object_delete", "description": "Delete an object from S3", "input_schema": { "type": "object", "properties": { "bucket_name": { "type": "string", "description": "Name of the S3 bucket" }, "object_key": { "type": "string", "description": "Key/path of the object to delete" } }, "required": [ "bucket_name", "object_key" ] } }, { "name": "s3_object_list", "description": "List objects in an S3 bucket", "input_schema": { "type": "object", "properties": { "bucket_name": { "type": "string", "description": "Name of the S3 bucket" } }, "required": [ "bucket_name" ] } }, { "name": "s3_object_read", "description": "Read an object's content from S3", "input_schema": { "type": "object", "properties": { "bucket_name": { "type": "string", "description": "Name of the S3 bucket" }, "object_key": { "type": "string", "description": "Key/path of the object to read" } }, "required": [ "bucket_name", "object_key" ] } }, { "name": "dynamodb_table_create", "description": "Create a new DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "key_schema": { "type": "array", "description": "Key schema for table creation" }, "attribute_definitions": { "type": "array", "description": "Attribute definitions for table creation" } }, "required": [ "table_name", "key_schema", "attribute_definitions" ] } }, { "name": "dynamodb_table_describe", "description": "Get details about a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" } }, "required": [ "table_name" ] } }, { "name": "dynamodb_table_list", "description": "List all DynamoDB tables", "input_schema": { "type": "object", "properties": {} } }, { "name": "dynamodb_table_delete", "description": "Delete a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" } }, "required": [ "table_name" ] } }, { "name": "dynamodb_table_update", "description": "Update a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "attribute_definitions": { "type": "array", "description": "Updated attribute definitions" } }, "required": [ "table_name", "attribute_definitions" ] } }, { "name": "dynamodb_item_put", "description": "Put an item into a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "item": { "type": "object", "description": "Item data to put" } }, "required": [ "table_name", "item" ] } }, { "name": "dynamodb_item_get", "description": "Get an item from a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "key": { "type": "object", "description": "Key to identify the item" } }, "required": [ "table_name", "key" ] } }, { "name": "dynamodb_item_update", "description": "Update an item in a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "key": { "type": "object", "description": "Key to identify the item" }, "item": { "type": "object", "description": "Updated item data" } }, "required": [ "table_name", "key", "item" ] } }, { "name": "dynamodb_item_delete", "description": "Delete an item from a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "key": { "type": "object", "description": "Key to identify the item" } }, "required": [ "table_name", "key" ] } }, { "name": "dynamodb_item_query", "description": "Query items in a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "key_condition": { "type": "string", "description": "Key condition expression" }, "expression_values": { "type": "object", "description": "Expression attribute values" } }, "required": [ "table_name", "key_condition", "expression_values" ] } }, { "name": "dynamodb_item_scan", "description": "Scan items in a DynamoDB table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "filter_expression": { "type": "string", "description": "Filter expression" }, "expression_attributes": { "type": "object", "properties": { "values": { "type": "object", "description": "Expression attribute values" }, "names": { "type": "object", "description": "Expression attribute names" } } } }, "required": [ "table_name" ] } }, { "name": "dynamodb_batch_get", "description": "Batch get multiple items from DynamoDB tables", "input_schema": { "type": "object", "properties": { "request_items": { "type": "object", "description": "Map of table names to keys to retrieve", "additionalProperties": { "type": "object", "properties": { "Keys": { "type": "array", "items": { "type": "object" } }, "ConsistentRead": { "type": "boolean" }, "ProjectionExpression": { "type": "string" } }, "required": [ "Keys" ] } } }, "required": [ "request_items" ] } }, { "name": "dynamodb_item_batch_write", "description": "Batch write operations (put/delete) for DynamoDB items", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "operation": { "type": "string", "enum": [ "put", "delete" ], "description": "Type of batch operation (put or delete)" }, "items": { "type": "array", "description": "Array of items to process" }, "key_attributes": { "type": "array", "description": "For delete operations, specify which attributes form the key", "items": { "type": "string" } } }, "required": [ "table_name", "operation", "items" ] } }, { "name": "dynamodb_describe_ttl", "description": "Get the TTL settings for a table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" } }, "required": [ "table_name" ] } }, { "name": "dynamodb_update_ttl", "description": "Update the TTL settings for a table", "input_schema": { "type": "object", "properties": { "table_name": { "type": "string", "description": "Name of the DynamoDB table" }, "ttl_enabled": { "type": "boolean", "description": "Whether TTL should be enabled" }, "ttl_attribute": { "type": "string", "description": "The attribute name to use for TTL" } }, "required": [ "table_name", "ttl_enabled", "ttl_attribute" ] } }, { "name": "dynamodb_batch_execute", "description": "Execute multiple PartiQL statements in a batch", "input_schema": { "type": "object", "properties": { "statements": { "type": "array", "description": "List of PartiQL statements to execute", "items": { "type": "string" } }, "parameters": { "type": "array", "description": "List of parameter lists for each statement", "items": { "type": "array" } } }, "required": [ "statements", "parameters" ] } } ], "resources": [ { "uri": "audit://aws-operations", "name": "AWS Operations Audit Log", "description": "A log of all AWS operations performed through this server", "mimeType": "text/plain" } ] }